summaryrefslogtreecommitdiffstats
path: root/BrowserSource/Proxy/Logging.h
diff options
context:
space:
mode:
authoryum <yum.food.vr@gmail.com>2023-09-13 21:43:33 -0700
committeryum <yum.food.vr@gmail.com>2023-09-13 21:55:05 -0700
commit703e183e430f15aff6005d38aefcacf91e2314cd (patch)
tree93f647cf7e4be14e36fa9d9b79ea9717fe93e417 /BrowserSource/Proxy/Logging.h
parent8fcc6c248554a0b08ecd4b43cc0971b78810c080 (diff)
General cleanupv0.15.3
Remove unused proxy code, curl, and images.
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;
- }
-}
-