mirror of
https://github.com/vee1e/mitmproxy.git
synced 2026-09-01 18:27:18 +00:00
* show local datetime * Add TZ=UTC in test script * update changelog * review changes * [autofix.ci] apply automated fixes * review changes --------- Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
5 lines
145 B
JavaScript
5 lines
145 B
JavaScript
const err = console.error;
|
|
console.warn = console.error = function () {
|
|
err.apply(console, arguments);
|
|
throw new Error(arguments[0]);
|
|
};
|