File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -229,7 +229,7 @@ function ApplyAll() {
229229 // clearInterval(update_intervalId);
230230 update_intervalId = setInterval ( ( ) => {
231231 // websocket resets after 60s of idle by most firewalls
232- console . log ( "periodically saving .." ) ;
232+ // console.log("periodically saving ..");
233233 dispatch ( remoteUpdateAllPods ( ) ) ;
234234 } , 1000 ) ;
235235 }
@@ -890,7 +890,7 @@ function ConfigButton() {
890890 { refetchQueries : [ "RepoConfig" ] }
891891 ) ;
892892 useEffect ( ( ) => {
893- console . log ( data ) ;
893+ // console.log(data);
894894 if ( data ) {
895895 dispatch ( repoSlice . actions . setRepoConfig ( JSON . parse ( data . repoConfig ) ) ) ;
896896 }
Original file line number Diff line number Diff line change @@ -426,7 +426,7 @@ function onMessage(store) {
426426 // msg.data for websocket
427427 // msg.body for rabbitmq
428428 let { type, payload } = JSON . parse ( msg . data || msg . body || undefined ) ;
429- console . log ( "got message" , type , payload ) ;
429+ // console.log("got message", type, payload);
430430 switch ( type ) {
431431 case "output" :
432432 {
You can’t perform that action at this time.
0 commit comments