Skip to content

Commit

Permalink
style: remove dots at the end of logging messages in Dredd.js
Browse files Browse the repository at this point in the history
  • Loading branch information
honzajavorek committed Mar 14, 2019
1 parent 40d11d7 commit c6fb903
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/Dredd.js
Expand Up @@ -62,11 +62,11 @@ class Dredd {
return;
}

this.logger.debug('Reading API description files.');
this.logger.debug('Reading API description files');
this.loadFiles((loadErr) => {
if (loadErr) { return callback(loadErr, this.stats); }

this.logger.debug('Parsing API description files and compiling a list of HTTP transactions to test.');
this.logger.debug('Parsing API description files and compiling a list of HTTP transactions to test');
this.compileTransactions((compileErr) => {
if (compileErr) { return callback(compileErr, this.stats); }

Expand Down

0 comments on commit c6fb903

Please sign in to comment.