Fix debugnodes

This commit is contained in:
outfoxxed 2023-11-04 03:00:22 -07:00
parent 91c94d6e49
commit 6cf58b9c3d
No known key found for this signature in database
GPG key ID: 4C88A185FB89301E

View file

@ -225,9 +225,9 @@ void dispatch_debug(std::string arg) {
auto* root = g_Hy3Layout->getWorkspaceRootGroup(workspace);
if (workspace == -1) {
Debug::log(LOG, "DEBUG NODES: no nodes on workspace");
hy3_log(LOG, "DEBUG NODES: no nodes on workspace");
} else {
Debug::log(LOG, "DEBUG NODES\n%s", root->debugNode().c_str());
hy3_log(LOG, "DEBUG NODES\n{}", root->debugNode().c_str());
}
}