From fd484a217c77dba42c29fae1cfdb2390422da847 Mon Sep 17 00:00:00 2001 From: eug-vs Date: Thu, 25 Jun 2020 21:25:18 +0300 Subject: feat: add logger and handle eveyrthing nicely --- hooks/logging.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'hooks/logging.ts') diff --git a/hooks/logging.ts b/hooks/logging.ts index 840873c..8babe9a 100644 --- a/hooks/logging.ts +++ b/hooks/logging.ts @@ -1,13 +1,13 @@ import { HookContext } from '@feathersjs/feathers'; +import logger from '../logger'; export default async (context: HookContext): Promise => { if (context.params.provider) { const { method, path, id } = context; - const timestamp = new Date().toLocaleString('default', { timeStyle: 'medium', dateStyle: 'short' }); const message = `${method.toUpperCase()}: /${path}/${id || ''}`; const username = context.params.user?.username || 'anonymous'; - console.log(`[${timestamp}] ${message} ${username}`); + logger.log(`${message} ${username}`); } return context; }; -- cgit v1.2.3