diff --git a/IPython/html/static/notebook/js/kernelselector.js b/IPython/html/static/notebook/js/kernelselector.js
index 0daad3cc3..d82200edd 100644
--- a/IPython/html/static/notebook/js/kernelselector.js
+++ b/IPython/html/static/notebook/js/kernelselector.js
@@ -137,14 +137,13 @@ define([
KernelSelector.prototype._set_kernel = function (kernel_name) {
/** Actually set the kernel (kernelspecs have been loaded) */
- console.log("_set_kernel", kernel_name, this.current_selection);
if (kernel_name === this.current_selection) {
// only trigger event if value changed
return;
}
var ks = this.kernelspecs[kernel_name];
if (this.notebook._session_starting) {
- console.log("Cannot change kernel while waiting for pending session start.");
+ console.error("Cannot change kernel while waiting for pending session start.");
return;
}
this.current_selection = kernel_name;