Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit d9e68a4

Browse files
committed
Remove some logging
1 parent 6e735d5 commit d9e68a4

File tree

1 file changed

+0
-3
lines changed
  • lib/matplotlib/backends/web_static

1 file changed

+0
-3
lines changed

lib/matplotlib/backends/web_static/mpl.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,6 @@ window.onload = function() {
3737
}
3838

3939
ws.onmessage = function (evt) {
40-
console.log("message " + evt.data);
41-
4240
if (supports_binary) {
4341
if (evt.data instanceof Blob) {
4442
/* FIXME: We get "Resource interpreted as Image but
@@ -57,7 +55,6 @@ window.onload = function() {
5755
}
5856
} else {
5957
if (evt.data.slice(0, 21) == "data:image/png;base64") {
60-
console.log("got image");
6158
imageObj.src = evt.data;
6259
return;
6360
}

0 commit comments

Comments
 (0)