17 lines
344 B
C++
17 lines
344 B
C++
/**
|
|
* @file Log.hpp
|
|
* @author marisa <marisa@fwmari.net>
|
|
* @brief Logging utilities
|
|
* @version 0.1
|
|
* @date 2023-10-06
|
|
*
|
|
* Copyright (c) 2023 marisa <https://git.fwmari.net/marisa/MolecularDynamics2>
|
|
*
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <boost/log/sinks/basic_sink_backend.hpp>
|
|
#include <boost/log/sinks/sync_frontend.hpp>
|
|
|
|
void setupLogging(); |