Skip to content

Commit

Permalink
output
Browse files Browse the repository at this point in the history
  • Loading branch information
tobiasrausch committed Oct 20, 2023
1 parent 936c4f0 commit 66f977e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/ncov.h
Original file line number Diff line number Diff line change
Expand Up @@ -288,10 +288,10 @@ namespace lorax

// Show cmd
boost::posix_time::ptime now = boost::posix_time::second_clock::local_time();
std::cout << '[' << boost::posix_time::to_simple_string(now) << "] ";
std::cout << "lorax ";
for(int i=0; i<argc; ++i) { std::cout << argv[i] << ' '; }
std::cout << std::endl;
std::cerr << '[' << boost::posix_time::to_simple_string(now) << "] ";
std::cerr << "lorax ";
for(int i=0; i<argc; ++i) { std::cerr << argv[i] << ' '; }
std::cerr << std::endl;

return runNCov(c);
}
Expand Down

0 comments on commit 66f977e

Please sign in to comment.