From 703e183e430f15aff6005d38aefcacf91e2314cd Mon Sep 17 00:00:00 2001 From: yum Date: Wed, 13 Sep 2023 21:43:33 -0700 Subject: General cleanup Remove unused proxy code, curl, and images. --- BrowserSource/Proxy/Logging.h | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 BrowserSource/Proxy/Logging.h (limited to 'BrowserSource/Proxy/Logging.h') 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 -#include -#include -#include - -namespace Logging { - // Usage: Log("{}\n", "Hello, world!"); - template - void Log(std::string_view format, Args&&... args) { - const std::string raw = fmt::vformat(format, fmt::make_format_args(args...)); - - std::cout << raw; - } -} - -- cgit v1.2.3