Skip to content

Commit

Permalink
Fix style issues
Browse files Browse the repository at this point in the history
Signed-off-by: Marc Emmers <[email protected]>
  • Loading branch information
marcemmers committed Oct 17, 2023
1 parent 7f36f24 commit edc5259
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion include/ocpp/common/ocpp_logging.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
#include <map>
#include <memory>
#include <mutex>
#include <thread>
#include <ocpp/common/types.hpp>
#include <thread>

namespace ocpp {

Expand Down
4 changes: 2 additions & 2 deletions lib/ocpp/common/ocpp_logging.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -201,8 +201,8 @@ FormattedMessageWithType MessageLogging::format_message(const std::string& messa
}

void MessageLogging::start_session_logging(const std::string& session_id, const std::string& log_path) {
this->session_id_logging[session_id] =
std::make_shared<ocpp::MessageLogging>(true, log_path, "incomplete-ocpp", false, false, false, true, false, nullptr);
this->session_id_logging[session_id] = std::make_shared<ocpp::MessageLogging>(
true, log_path, "incomplete-ocpp", false, false, false, true, false, nullptr);
}

void MessageLogging::stop_session_logging(const std::string& session_id) {
Expand Down

0 comments on commit edc5259

Please sign in to comment.