Add logging facility

This commit is contained in:
2023-10-29 20:50:54 -03:00
parent c032d066f0
commit 869b93bab0
5 changed files with 143 additions and 15 deletions

17
src/log/Log.hpp Normal file
View File

@@ -0,0 +1,17 @@
/**
* @file Log.hpp
* @author Jun <jun@firmwarejun.net>
* @brief Logging utilities
* @version 0.1
* @date 2023-10-06
*
* Copyright (c) 2023 jun <https://git.firmwarejun.net/jun/MolecularDynamics2>
*
*/
#pragma once
#include <boost/log/sinks/basic_sink_backend.hpp>
#include <boost/log/sinks/sync_frontend.hpp>
void setupLogging();