Add debug_log, fix tx_bht (#1149)

This commit is contained in:
Kyle Reed 2023-06-12 23:14:26 -07:00 committed by GitHub
parent 3db2053c21
commit 19491ce3f7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 32 additions and 24 deletions

View file

@ -36,19 +36,6 @@ namespace fs = std::filesystem;
using namespace portapack;
using namespace std::literals;
/*#include "log_file.hpp"
LogFile* g_pLog = nullptr;
static void log_it(const std::string& msg) {
static LogFile s_log;
if (g_pLog == nullptr) {
delete_file("appset.txt");
s_log.append("appset.txt");
g_pLog = &s_log;
}
g_pLog->write_entry(msg);
}*/
namespace app_settings {
template <typename T>