From c09690bb5cb76d2c3549f009d6ffaf8ed5faafa2 Mon Sep 17 00:00:00 2001 From: Robob27 Date: Sun, 5 Feb 2023 07:33:26 -0500 Subject: [PATCH] Remove newline in debug --- plugins/hotkeys.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/hotkeys.cpp b/plugins/hotkeys.cpp index 30309c6bf..788a4c02b 100644 --- a/plugins/hotkeys.cpp +++ b/plugins/hotkeys.cpp @@ -37,7 +37,7 @@ static bool can_invoke(const string &cmdline, df::viewscreen *screen) { } static int cleanupHotkeys(lua_State *) { - DEBUG(log).print("cleaning up old stub keybindings for:\n %s\n", join_strings(", ", Gui::getCurFocus(true)).c_str()); + DEBUG(log).print("cleaning up old stub keybindings for: %s\n", join_strings(", ", Gui::getCurFocus(true)).c_str()); std::for_each(sorted_keys.begin(), sorted_keys.end(), [](const string &sym) { string keyspec = sym + "@" + MENU_SCREEN_FOCUS_STRING; DEBUG(log).print("clearing keybinding: %s\n", keyspec.c_str());