Skip to content

Commit

Permalink
fix log name clash
Browse files Browse the repository at this point in the history
  • Loading branch information
rob-p committed Apr 7, 2016
1 parent 0313394 commit aac2432
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/SailfishIndexer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ Builds a Sailfish index
auto consoleSink = std::make_shared<spdlog::sinks::stderr_sink_mt>();
//auto consoleLog = spdlog::create("consoleLog", {consoleSink});
//auto fileLog = spdlog::create("fileLog", {fileSink});
auto jointLog = spdlog::create("jointLog", {fileSink, consoleSink});
auto jointLog = spdlog::create("jLog", {fileSink, consoleSink});

std::cerr << "writing log to " << logPath.string() << "\n";

Expand Down

0 comments on commit aac2432

Please sign in to comment.