Skip to content

Commit

Permalink
fix: Make some logging output less chatty by demoting it to 'silly' l…
Browse files Browse the repository at this point in the history
…evel
  • Loading branch information
honzajavorek committed Oct 4, 2016
1 parent 826df23 commit ca5a726
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/transaction-runner.coffee
Expand Up @@ -69,7 +69,7 @@ class TransactionRunner
# we need to work with indexes (keys) here, no other way of access.
async.timesSeries transactions.length, (transactionIndex, iterationCallback) =>
transaction = transactions[transactionIndex]
logger.verbose("Processing transaction ##{transactionIndex}:", transaction.name)
logger.verbose("Processing transaction ##{transactionIndex + 1}:", transaction.name)

logger.verbose('Running \'beforeEach\' hooks.')
@runHooksForData hooks.beforeEachHooks, transaction, false, =>
Expand Down Expand Up @@ -97,7 +97,7 @@ class TransactionRunner
@runHooksForData hooks.afterHooks[transaction.name], transaction, false, =>
return iterationCallback(@hookHandlerError) if @hookHandlerError

logger.debug("Evaluating results of transaction execution ##{transactionIndex}:", transaction.name)
logger.debug("Evaluating results of transaction execution ##{transactionIndex + 1}:", transaction.name)
@emitResult transaction, iterationCallback

, (iterationError) =>
Expand Down Expand Up @@ -518,7 +518,7 @@ class TransactionRunner
logger.verbose('Handling HTTP response from tested server.')

res.on 'data', (chunk) ->
logger.debug('Recieving some data from tested server.')
logger.silly('Recieving some data from tested server.')
buffer += chunk

res.on 'error', (error) =>
Expand Down

0 comments on commit ca5a726

Please sign in to comment.