The Sparta Modeling Framework
Loading...
Searching...
No Matches
Message.hpp
1// <Message> -*- C++ -*-
2
3#pragma once
4
5#include "sparta/log/MessageInfo.hpp"
6
7#include <string>
8
9
10namespace sparta
11{
12 namespace log
13 {
17 struct Message
18 {
19 MessageInfo info;
20 const std::string& content;
21 };
22
23 } // namespace log
24} // namespace sparta
25
Macros for handling exponential backoff.
Logging Message information excluding actual message content.
Contains a logging message header and content.
Definition Message.hpp:18