Skip to content

Commit

Permalink
chore(develop): 전반적인 콘솔로그 주석 처리
Browse files Browse the repository at this point in the history
  • Loading branch information
Doyu-Lee committed Jan 12, 2024
1 parent d08f418 commit 4582b93
Show file tree
Hide file tree
Showing 9 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion components/chat/ChatInput.vue
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ export default {
this.isOpen = to;
},
resizeViewport() {
console.log("RESIZE - ", window.visualViewport?.height);
// console.log("RESIZE - ", window.visualViewport?.height);
if (window.visualViewport && this.$refs.chatTextRef) {
const currentVisualViewport = window.visualViewport.height;
this.$refs.chatTextRef.style.height = `${currentVisualViewport}px`;
Expand Down
4 changes: 2 additions & 2 deletions components/chat2/ChatInput.vue
Original file line number Diff line number Diff line change
Expand Up @@ -62,11 +62,11 @@ export default {
// this.setReload(true);
const res = await sendChat(this.data);
console.log("sendChat >>> ", this.data);
// console.log("sendChat >>> ", this.data);
if (!res.success) {
const msg = `${res.status_code} - ${res.message}`;
console.error("Error! > ", msg, res);
// console.error("Error! > ", msg, res);
alert(msg);
}
Expand Down
2 changes: 1 addition & 1 deletion components/chat2/ChatVoice.vue
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ recognition.onresult = (e) => {
let transcript = e.results[i][0].transcript;
if (e.results[i].isFinal) {
data.value += transcript;
console.log("🎤 ", transcript);
// console.log("🎤 ", transcript);
}
}
};
Expand Down
2 changes: 1 addition & 1 deletion components/setting/Push.vue
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ export default {
this.$refs.myBottomSheet.close();
},
openErrorModal(message) {
console.log(message);
// console.log(message);
this.$eventBus.$emit("onCustomModal", {
title: "오류가 발생했어요!",
desc: message,
Expand Down
2 changes: 1 addition & 1 deletion middleware/auth.global.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ export default defineNuxtRouteMiddleware(async (to, from) => {
// (2)-1. 만료 15분 전이면 갱신
// (2)-2. 15분 이상 남았으면 자동 로그인
if (expiresIn && isExpiredIn(expiresIn, 15)) {
console.log("🔒 Expired in 15m...", isExpiredIn(expiresIn, 15));
// console.log("🔒 Expired in 15m...", isExpiredIn(expiresIn, 15));
try {
const res = await refresh(refreshTokenC);

Expand Down
4 changes: 2 additions & 2 deletions pages/callback/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ const { getSocialCallback } = useAuthService();
const route = useRoute();
const router = useRouter();
console.log(route.query);
console.log(route.params);
// console.log(route.query);
// console.log(route.params);
onMounted(async () => {
const service = route.query.service;
Expand Down
2 changes: 1 addition & 1 deletion pages/setting/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ export default {
confirm: "탈퇴하기",
async callback() {
const res = await deleteAccount();
console.log(res);
// console.log(res);
if (!res.success) {
alert(res.message);
}
Expand Down
4 changes: 2 additions & 2 deletions public/firebase-messaging-sw.js
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ self.addEventListener("notificationclick", (event) => {
"focus" in client
) {
foundWindowClient = client;
console.log(event.currentTarget.clients);
// console.log(event.currentTarget.clients);
break;
}
}
Expand All @@ -77,7 +77,7 @@ self.addEventListener("notificationclick", (event) => {
}
});
} else if (clients.openWindow) {
console.log(clients);
// console.log(clients);
return clients.openWindow(urlToOpen.href);
}
}),
Expand Down
2 changes: 1 addition & 1 deletion public/service-worker.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ importScripts(
);

self.addEventListener("message", (event) => {
console.log(event);
// console.log(event);
if (event.data && event.data.type === "SKIP_WAITING") {
self.skipWaiting();
}
Expand Down

0 comments on commit 4582b93

Please sign in to comment.