diff options
| author | Hein-Pieter van Braam | 2018-02-05 11:18:49 +0100 |
|---|---|---|
| committer | Hein-Pieter van Braam | 2018-02-05 11:18:49 +0100 |
| commit | e836a7d88d29347c509ef80a9e5cd63c682d5ad4 (patch) | |
| tree | d51216d53506549e418ba52a6aa44a9847f03bed | |
| parent | ea99b90a77228189d6dc38ab7b7ada967d668ed8 (diff) | |
| download | godot-e836a7d88d29347c509ef80a9e5cd63c682d5ad4.tar.gz godot-e836a7d88d29347c509ef80a9e5cd63c682d5ad4.tar.zst godot-e836a7d88d29347c509ef80a9e5cd63c682d5ad4.zip | |
| -rw-r--r-- | core/script_debugger_local.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/core/script_debugger_local.cpp b/core/script_debugger_local.cpp index 0da377453..c0e115e30 100644 --- a/core/script_debugger_local.cpp +++ b/core/script_debugger_local.cpp @@ -291,7 +291,8 @@ void ScriptDebuggerLocal::profiling_end() { void ScriptDebuggerLocal::send_message(const String &p_message, const Array &p_args) { - print_line("MESSAGE: '" + p_message + "' - " + String(Variant(p_args))); + // This needs to be cleaned up entirely. + // print_line("MESSAGE: '" + p_message + "' - " + String(Variant(p_args))); } void ScriptDebuggerLocal::send_error(const String &p_func, const String &p_file, int p_line, const String &p_err, const String &p_descr, ErrorHandlerType p_type, const Vector<ScriptLanguage::StackInfo> &p_stack_info) { |
