Skip to content

Commit

Permalink
ci: Improving coverage on the main branch.
Browse files Browse the repository at this point in the history
  • Loading branch information
Anadian committed Apr 25, 2021
1 parent 90864ab commit dcfa6f6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -939,11 +939,11 @@ if(require.main === module){
logger = ApplicationLogWinstonInterface.initWinstonLogger('debug.log', EnvironmentPaths.log);
try{
setLogger( logger );
} catch(error){
} catch(error)/* istanbul ignore next */{
return_error = new Error(`setLogger threw an error: ${error}`);
console.error(return_error);
}
} catch(error){
} catch(error)/* istanbul ignore next */{
return_error = new Error(`ApplicationLogWinstonInterface.initWinstonLogger threw an error: ${error}`);
console.error(return_error);
//throw return_error;
Expand Down

0 comments on commit dcfa6f6

Please sign in to comment.