From 7d80bf0ea25eb3cbbfa48331eed38399e4506b54 Mon Sep 17 00:00:00 2001 From: Rajeh Taher Date: Wed, 15 May 2024 18:36:20 +0300 Subject: [PATCH] feat(add-logger): initial commit (#777) --- src/Socket/business.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Socket/business.ts b/src/Socket/business.ts index 696c5f6..c9dfdb1 100644 --- a/src/Socket/business.ts +++ b/src/Socket/business.ts @@ -270,6 +270,7 @@ export const makeBusinessSocket = (config: SocketConfig) => { return { ...sock, + logger: config.logger, getOrderDetails, getCatalog, getCollections, @@ -277,4 +278,4 @@ export const makeBusinessSocket = (config: SocketConfig) => { productDelete, productUpdate } -} \ No newline at end of file +}