summaryrefslogtreecommitdiffstats
path: root/editor/debugger
diff options
context:
space:
mode:
authorThaddeus Crews <repiteo@outlook.com>2024-10-25 13:04:04 -0500
committerThaddeus Crews <repiteo@outlook.com>2024-10-25 13:04:04 -0500
commita2e3473532f06b1342976a49e60914043a2d7aa3 (patch)
treee253dae23920e33c80e66ea221b080609968a377 /editor/debugger
parent6ad513b0e8a2e8814ac189a510797706a5bb59e3 (diff)
parentbe41e6f84e81e8e64e672c834f9678be14d56f6e (diff)
downloadredot-engine-a2e3473532f06b1342976a49e60914043a2d7aa3.tar.gz
Merge pull request #98378 from dalexeev/doc-clarify-engine-debugger
Clarify `EngineDebugger` and `EditorDebugger*` documentation
Diffstat (limited to 'editor/debugger')
-rw-r--r--editor/debugger/script_editor_debugger.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/debugger/script_editor_debugger.cpp b/editor/debugger/script_editor_debugger.cpp
index cbe7910518..73c59707d2 100644
--- a/editor/debugger/script_editor_debugger.cpp
+++ b/editor/debugger/script_editor_debugger.cpp
@@ -827,7 +827,7 @@ void ScriptEditorDebugger::_parse_message(const String &p_msg, uint64_t p_thread
bool parsed = EditorDebuggerNode::get_singleton()->plugins_capture(this, p_msg, p_data);
if (!parsed) {
- WARN_PRINT("unknown message " + p_msg);
+ WARN_PRINT("Unknown message: " + p_msg);
}
}
}