Skip to content
This repository has been archived by the owner on Jan 11, 2023. It is now read-only.

Commit

Permalink
chore: set e2e log level to trace
Browse files Browse the repository at this point in the history
  • Loading branch information
lalexgap committed Feb 19, 2021
1 parent cf8057d commit 42decbc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions packages/e2e-testing/src/payment-server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ const createTasks = (logger: Logger) => ({
},
loggingConfiguration: {
logDestination: logFile,
logLevel: 'debug'
logLevel: 'trace'
}
}),
backoffStrategy: {
Expand Down Expand Up @@ -210,7 +210,7 @@ const commands = {
handler: async (args: AnyArgs): Promise<void> => {
const {logFile, dropIncomingRate, dropOutgoingRate, meanDelay} = args;
const logger = createTestLogger(logFile).child({module: 'PaymentServer'});
(logger as any).level = 'debug';
(logger as any).level = 'trace';

logger.info('starting payment server', {args});
const tasks = createTasks(logger);
Expand Down
4 changes: 2 additions & 2 deletions packages/e2e-testing/src/receipt-server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ const commands = {
builder,
handler: async (args: AnyArgs): Promise<void> => {
const logger = createTestLogger(args.logFile).child({module: 'ReceiptServer'});
(logger as any).level = 'debug';
(logger as any).level = 'trace';

const testContracts = {
assetHolder: {
Expand All @@ -69,7 +69,7 @@ const commands = {
},
loggingConfiguration: {
logDestination: args.logFile,
logLevel: 'debug'
logLevel: 'trace'
},
// EVM Validation helps catch some errors early
skipEvmValidation: false
Expand Down

0 comments on commit 42decbc

Please sign in to comment.