From 49a3666208e6bf72fe0e5fb0c5318a56eb257bc3 Mon Sep 17 00:00:00 2001 From: Danish Arora <35004822+danisharora099@users.noreply.github.com> Date: Mon, 30 Oct 2023 19:16:03 +0530 Subject: [PATCH] revert logger namespace (#1696) --- .github/workflows/ci.yml | 4 ++-- packages/utils/src/logger/index.ts | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index dac1e009da..f57da9be15 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -87,14 +87,14 @@ jobs: with: nim_wakunode_image: wakuorg/go-waku:latest test_type: go-waku-master - debug: js-waku* + debug: waku* node_with_nwaku_master: uses: ./.github/workflows/test-node.yml with: nim_wakunode_image: wakuorg/nwaku:deploy-wakuv2-test test_type: nwaku-master - debug: js-waku* + debug: waku* maybe-release: name: release diff --git a/packages/utils/src/logger/index.ts b/packages/utils/src/logger/index.ts index e7fff19a3a..02ccec66d3 100644 --- a/packages/utils/src/logger/index.ts +++ b/packages/utils/src/logger/index.ts @@ -1,6 +1,6 @@ import debug, { Debugger } from "debug"; -const APP_NAME = "js-waku"; +const APP_NAME = "waku"; export class Logger { private _info: Debugger;