Skip to content

Commit

Permalink
fix(logging): adapt Debug::log to new signature
Browse files Browse the repository at this point in the history
  • Loading branch information
levnikmyskin committed Sep 23, 2023
1 parent f4a320f commit af767d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ int prevVDesk = -1;
int currentVDesk = 1; // when plugin is launched, we assume we start at vdesk 1

void printLog(std::string s) {
Debug::log(INFO, ("[virtual-desktops] " + s).c_str());
Debug::log(INFO, "[virtual-desktops] %s", s);
// std::cout << "[virtual-desktops] " + s << std::endl;
}

Expand Down

0 comments on commit af767d8

Please sign in to comment.