Skip to content

Commit a0af340

Browse files
committed
Removed console logs left overs
1 parent 01fb072 commit a0af340

1 file changed

Lines changed: 0 additions & 2 deletions

File tree

webapp/components/general/GeppettoJupyterUtils.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ const handle_output = function (data) {
1010
GEPPETTO.trigger(GEPPETTO.Events.Hide_spinner);
1111
break;
1212
case 'execute_result':
13-
console.log(data.content.data['text/plain'].trim(), true);
1413
try {
1514
var response = JSON.parse(data.content.data['text/plain'].replace(/^'(.*)'$/, '$1'));
1615
} catch (error) {
@@ -27,7 +26,6 @@ const handle_output = function (data) {
2726
};
2827

2928
const execPythonMessage = function (command, callback = handle_output) {
30-
console.log(`Executing Python command: ${command}`, true);
3129
const { kernel } = IPython.notebook;
3230
const messageID = kernel.execute(command, { iopub: { output: callback } }, { silent: false, stop_on_error: true, store_history: true });
3331

0 commit comments

Comments
 (0)