Skip to content

Commit

Permalink
chore: lowered successful delinking loglevel to verbose
Browse files Browse the repository at this point in the history
  • Loading branch information
erisu committed Dec 26, 2020
1 parent bab6940 commit c032188
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/handler.js
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ module.exports = {
delete appPackage.cordova.services[serviceName];
hasUpdatedPackage = true;
events.emit(
'info',
'verbose',
`[Cordova Electron] The service name "${serviceName}" was delinked.`
);
}
Expand Down
2 changes: 1 addition & 1 deletion tests/spec/unit/lib/handler.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -383,7 +383,7 @@ describe('Handler export', () => {
);

expect(events.emit).toHaveBeenCalledWith(
'info',
'verbose',
'[Cordova Electron] The service name "Device" was delinked.'
);
events.emit.calls.reset();
Expand Down

0 comments on commit c032188

Please sign in to comment.