Skip to content

Commit

Permalink
Update for the latest core
Browse files Browse the repository at this point in the history
  • Loading branch information
maksis committed Sep 5, 2024
1 parent c26771b commit 1dfc78d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions airdcppd/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ static void handleCrash(int sig) {
std::cerr << std::endl << std::endl;
std::cerr << "Signal: " << std::to_string(sig) << std::endl;
std::cerr << "Process ID: " << getpid() << std::endl;
std::cerr << "Time: " << Util::getTimeString() << std::endl;
std::cerr << "Time: " << Util::formatCurrentTime() << std::endl;
std::cerr << "OS version: " << SystemUtil::getOsVersion() << std::endl;
std::cerr << "Client version: " << shortVersionString << std::endl << std::endl;
#if USE_STACKTRACE
Expand All @@ -82,7 +82,7 @@ static void handleCrash(int sig) {
std::ofstream f;
f.open(stackPath.c_str());

f << "Time: " + Util::getTimeString() << std::endl;
f << "Time: " + Util::formatCurrentTime() << std::endl;
f << "OS version: " + SystemUtil::getOsVersion() << std::endl;
f << "Client version: " + shortVersionString << std::endl << std::endl;

Expand Down

0 comments on commit 1dfc78d

Please sign in to comment.