summaryrefslogtreecommitdiffstats
path: root/BrowserSource/Proxy/Logging.h
diff options
context:
space:
mode:
Diffstat (limited to 'BrowserSource/Proxy/Logging.h')
-rw-r--r--BrowserSource/Proxy/Logging.h19
1 files changed, 0 insertions, 19 deletions
diff --git a/BrowserSource/Proxy/Logging.h b/BrowserSource/Proxy/Logging.h
deleted file mode 100644
index 767821f..0000000
--- a/BrowserSource/Proxy/Logging.h
+++ /dev/null
@@ -1,19 +0,0 @@
-#pragma once
-
-#pragma once
-
-#include <fmt/core.h>
-#include <iostream>
-#include <string>
-#include <string_view>
-
-namespace Logging {
- // Usage: Log("{}\n", "Hello, world!");
- template<typename... Args>
- void Log(std::string_view format, Args&&... args) {
- const std::string raw = fmt::vformat(format, fmt::make_format_args(args...));
-
- std::cout << raw;
- }
-}
-