Skip to content

Commit 0681ffe

Browse files
BrodaNoelromaindso
authored andcommitted
Wrap console calls into a check (facebook#2301)
* Wrap console calls into a check * Add another check
1 parent 5a88fbb commit 0681ffe

File tree

2 files changed

+20
-18
lines changed

2 files changed

+20
-18
lines changed

packages/react-dev-utils/webpackHotDevClient.js

+5-5
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ var connection = new SockJS(
172172
// to avoid spamming the console. Disconnect usually happens
173173
// when developer stops the server.
174174
connection.onclose = function() {
175-
if (typeof console !== 'undefined') {
175+
if (typeof console !== 'undefined' && typeof console.info === 'function') {
176176
console.info(
177177
'The development server has disconnected.\nRefresh the page if necessary.'
178178
);
@@ -186,8 +186,8 @@ var hasCompileErrors = false;
186186

187187
function clearOutdatedErrors() {
188188
// Clean up outdated compile errors, if any.
189-
if (typeof console !== 'undefined') {
190-
if (hasCompileErrors && typeof console.clear === 'function') {
189+
if (typeof console !== 'undefined' && typeof console.clear === 'function') {
190+
if (hasCompileErrors) {
191191
console.clear();
192192
}
193193
}
@@ -226,7 +226,7 @@ function handleWarnings(warnings) {
226226
errors: [],
227227
});
228228

229-
if (typeof console !== 'undefined') {
229+
if (typeof console !== 'undefined' && typeof console.warn === 'function') {
230230
for (var i = 0; i < formatted.warnings.length; i++) {
231231
console.warn(stripAnsi(formatted.warnings[i]));
232232
}
@@ -266,7 +266,7 @@ function handleErrors(errors) {
266266
showErrorOverlay(formatted.errors[0]);
267267

268268
// Also log them to the console.
269-
if (typeof console !== 'undefined') {
269+
if (typeof console !== 'undefined' && typeof console.error === 'function') {
270270
for (var i = 0; i < formatted.errors.length; i++) {
271271
console.error(stripAnsi(formatted.errors[i]));
272272
}

packages/react-error-overlay/src/effects/proxyConsole.js

+15-13
Original file line numberDiff line numberDiff line change
@@ -50,20 +50,22 @@ const permanentRegister = function proxyConsole(
5050
) {
5151
if (typeof console !== 'undefined') {
5252
const orig = console[type];
53-
console[type] = function __stack_frame_overlay_proxy_console__() {
54-
try {
55-
const message = arguments[0];
56-
if (typeof message === 'string' && reactFrameStack.length > 0) {
57-
callback(message, reactFrameStack[reactFrameStack.length - 1]);
53+
if (typeof orig === 'function') {
54+
console[type] = function __stack_frame_overlay_proxy_console__() {
55+
try {
56+
const message = arguments[0];
57+
if (typeof message === 'string' && reactFrameStack.length > 0) {
58+
callback(message, reactFrameStack[reactFrameStack.length - 1]);
59+
}
60+
} catch (err) {
61+
// Warnings must never crash. Rethrow with a clean stack.
62+
setTimeout(function() {
63+
throw err;
64+
});
5865
}
59-
} catch (err) {
60-
// Warnings must never crash. Rethrow with a clean stack.
61-
setTimeout(function() {
62-
throw err;
63-
});
64-
}
65-
return orig.apply(this, arguments);
66-
};
66+
return orig.apply(this, arguments);
67+
};
68+
}
6769
}
6870
};
6971

0 commit comments

Comments
 (0)