File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -2,18 +2,18 @@ export {};
22
33// install, extension update, or chrome update
44chrome . runtime . onInstalled . addListener ( ( details ) => {
5- console . log ( '[background] onInstalled' , details ) ;
5+ console . debug ( '[background] onInstalled' , details ) ;
66} ) ;
77
88chrome . runtime . onConnect . addListener ( ( port ) => {
9- console . log ( '[background] onConnect' , port ) ;
9+ console . debug ( '[background] onConnect' , port ) ;
1010} ) ;
1111
1212chrome . runtime . onStartup . addListener ( ( ) => {
13- console . log ( '[background] onStartup' ) ;
13+ console . debug ( '[background] onStartup' ) ;
1414} ) ;
1515
1616// before unload
1717chrome . runtime . onSuspend . addListener ( ( ) => {
18- console . log ( '[background] onSuspend' ) ;
18+ console . debug ( '[background] onSuspend' ) ;
1919} ) ;
You can’t perform that action at this time.
0 commit comments