summaryrefslogtreecommitdiff
path: root/src/logger/journal.cpp
blob: 5e4f36dca9c31a95d60eacb3cfda65d1037781b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <iostream>

#include "journal.hpp"

namespace smtp::logger
{
	void Journal::LogError( std::string const& method, std::string const& message ) const
	{
        std::cout << "Error in method: " + method + " with message " + message << std::endl;
    }

    void Journal::LogOk( std::string const& message ) const
    {
        std::cout << message << std::endl;
    }
}