From 1926a4d9f15909176cc31091a3c8ff8bc324246d Mon Sep 17 00:00:00 2001 From: Ernest Okot Date: Mon, 14 May 2018 20:50:13 +0300 Subject: [PATCH] refactor(logging): added logger implementation --- src/utils/logger.ts | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 src/utils/logger.ts diff --git a/src/utils/logger.ts b/src/utils/logger.ts new file mode 100644 index 0000000..3d33f7a --- /dev/null +++ b/src/utils/logger.ts @@ -0,0 +1,5 @@ +import debug from 'debug'; + +const log = debug('sugarmq'); + +export default log;