blob: 711e702990866fc29430b125bdf570b068b08f99 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
//
// Created by martial.simon on 2/27/25.
//
#include "singleton.hh"
#include <iostream>
#include <string>
void Logger::open_log_file(const std::string& file)
{
std::cout << "LOG: Opening file " << file << "\n";
}
void Logger::write_to_log_file()
{
std::cout << "LOG: Writing into log file ...\n";
}
void Logger::close_log_file()
{
std::cout << "LOG: Closing log file ...\n";
}
|