From 13a303ce8d9c37a4dedeb687aef2485d2a80a8cf Mon Sep 17 00:00:00 2001
From: Kir_Antipov <kp.antipov@gmail.com>
Date: Tue, 20 Dec 2022 04:18:29 +0000
Subject: [PATCH] Added `logging` module

---
 src/utils/logging/index.ts | 13 +++++++++++++
 1 file changed, 13 insertions(+)
 create mode 100644 src/utils/logging/index.ts

diff --git a/src/utils/logging/index.ts b/src/utils/logging/index.ts
new file mode 100644
index 0000000..83f556a
--- /dev/null
+++ b/src/utils/logging/index.ts
@@ -0,0 +1,13 @@
+export {
+    Logger,
+
+    NULL_LOGGER,
+    CONSOLE_LOGGER,
+    PROCESS_LOGGER,
+
+    getDefaultLogger,
+} from "./logger";
+
+export {
+    LoggingStopwatch,
+} from "./logging-stopwatch";