Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion include/logit_cpp/logit.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#include "logit/enums.hpp"
#include "logit/utils.hpp"
#include "logit/Logger.hpp"
#include "logit/LogStream.hpp"
#include "logit/detail/LogStream.hpp"
#include "logit/detail/ScopeTimer.hpp"
#include "logit/log_macros.hpp"
#include "logit/formatter.hpp"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
#pragma once
#ifndef _LOGIT_LOG_STREAM_HPP_INCLUDED
#define _LOGIT_LOG_STREAM_HPP_INCLUDED
#ifndef _LOGIT_DETAIL_LOG_STREAM_HPP_INCLUDED
#define _LOGIT_DETAIL_LOG_STREAM_HPP_INCLUDED

/// \file LogStream.hpp
/// \brief Defines the LogStream class for stream-like logging functionality.

#include <sstream>
#include "Logger.hpp"
#include "utils/path_utils.hpp"
#include "../Logger.hpp"
#include "../utils/path_utils.hpp"

namespace logit {

Expand Down Expand Up @@ -78,4 +78,4 @@ namespace logit {

} // namespace logit

#endif // _LOGIT_LOG_STREAM_HPP_INCLUDED
#endif // _LOGIT_DETAIL_LOG_STREAM_HPP_INCLUDED
Loading