Skip to content

Commit 564abf0

Browse files
committed
Reduce logging
1 parent cdee33a commit 564abf0

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

src/ui/blackboard/jupyterhublet.jsx

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -319,7 +319,6 @@ class DictDecompressor extends Dict {
319319
throw new Error('Unsupported compression version and type')
320320
const dictId = cur.chunkview.getUint32(cur.pos) // unique stream id
321321
if (dictId !== this._dictId) {
322-
console.log('decodeState dictId change', dictId, this._dictId)
323322
// May be we need a map of dictionaries?
324323
this.resetDict()
325324
this._dictId = dictId
@@ -792,7 +791,6 @@ export class JupyterHublet extends Component {
792791
if (this.props.master) return
793792
// master gets no updates
794793
const stateUpdate = this.jState.receiveData(buffer)
795-
console.log('receiveStateUpdate result', stateUpdate)
796794
// do not update jupyter edit, while student is allowed to alter the state
797795
if (!this.props.isnotepad && !this.state.appLocked) return
798796
const { path, mime, state } = stateUpdate
@@ -804,7 +802,6 @@ export class JupyterHublet extends Component {
804802
}
805803

806804
processInitialStateUpdates() {
807-
console.log('processInitialStateUpdates')
808805
// Note also a master should get this
809806
const updates = this.pendingStateUpdates
810807
this.pendingStateUpdates = []
@@ -1144,7 +1141,6 @@ export class JupyterHublet extends Component {
11441141
icon={'pi pi-info-circle'}
11451142
key='infobutton'
11461143
onClick={(e) => {
1147-
console.log('Jupyter info')
11481144
this.jupyterinfo?.current?.toggle?.(e)
11491145
}}
11501146
tooltip='Info about applet and license'
@@ -1201,7 +1197,6 @@ export class JupyterHublet extends Component {
12011197
key='closebutton'
12021198
hide={!(master && this.props.closeApp)}
12031199
onClick={() => {
1204-
console.log('Close applet')
12051200
this.props.closeApp()
12061201
}}
12071202
tooltip='Close applet'

0 commit comments

Comments
 (0)