Skip to content

Commit

Permalink
FIX: NAV-16 - introduce cleaner cmake project structure for schedule …
Browse files Browse the repository at this point in the history
…library
  • Loading branch information
Brunner246 committed Aug 26, 2024
1 parent 4572007 commit c0fa61e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/logging/include/LoggerBridge.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class LOGGER_API LoggerBridge
DEBUG,
INFO,
WARN,
ERR,
ERR // ERROR is a reserved keyword by windows.h
};
virtual ~LoggerBridge() = default;
virtual void info(const std::string& message) = 0;
Expand Down
2 changes: 1 addition & 1 deletion src/schedule/test/test_gtfsReaderTxt.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ TEST(GTFS, TestStrategyReader) {

const auto readerFactory = schedule::gtfs::createGtfsReaderStrategyFactory(schedule::gtfs::ReaderType::TXT, std::move(basePath));

getLogger(Target::CONSOLE, LoggerName::GTFS)->setLevel(LoggerBridge::ERROR);
getLogger(Target::CONSOLE, LoggerName::GTFS)->setLevel(LoggerBridge::ERR);


// create strategy callable objects
Expand Down

0 comments on commit c0fa61e

Please sign in to comment.