Skip to content
This repository has been archived by the owner on Jul 10, 2024. It is now read-only.

Commit

Permalink
Fix logger
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewturner committed Apr 9, 2019
1 parent 919c43e commit f556be2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/aws/lambda.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const controlService = (request, logger = new Logger(Logger.DEBUG)) => {
logger.debug(`Creating context for source: ${context.source}...`);
const repository = createRepository(logger);
const holdStrategy = createHoldStrategy(logger, context);
const factory = new Factory();
const factory = new Factory(logger);
const service = new ControlService(logger, context, holdStrategy, factory, repository);
return { logger, service };
};
Expand Down

0 comments on commit f556be2

Please sign in to comment.