Skip to content

Commit ce180db

Browse files
committed
major: trial for major update
1 parent f692ea1 commit ce180db

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/chromeServices/background.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,18 @@ export {};
22

33
// install, extension update, or chrome update
44
chrome.runtime.onInstalled.addListener((details) => {
5-
console.log('[background] onInstalled', details);
5+
console.debug('[background] onInstalled', details);
66
});
77

88
chrome.runtime.onConnect.addListener((port) => {
9-
console.log('[background] onConnect', port);
9+
console.debug('[background] onConnect', port);
1010
});
1111

1212
chrome.runtime.onStartup.addListener(() => {
13-
console.log('[background] onStartup');
13+
console.debug('[background] onStartup');
1414
});
1515

1616
// before unload
1717
chrome.runtime.onSuspend.addListener(() => {
18-
console.log('[background] onSuspend');
18+
console.debug('[background] onSuspend');
1919
});

0 commit comments

Comments
 (0)