diff options
Diffstat (limited to 'hooks/logging.ts')
-rw-r--r-- | hooks/logging.ts | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/hooks/logging.ts b/hooks/logging.ts index 30353ae..840873c 100644 --- a/hooks/logging.ts +++ b/hooks/logging.ts @@ -2,11 +2,12 @@ import { HookContext } from '@feathersjs/feathers'; export default async (context: HookContext): Promise<HookContext> => { if (context.params.provider) { - const { method, path, id, params: { user: { username }} } = context; + 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 || ''}`); + console.log(`[${timestamp}] ${message} ${username}`); } return context; }; |