Skip to content

Commit 6e29ae0

Browse files
committed
remove console.logs
1 parent 8977463 commit 6e29ae0

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

ui/src/components/repo/sidebar.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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
}

ui/src/lib/ws/middleware.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
{

0 commit comments

Comments
 (0)