diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2019-09-20 20:22:43 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-20 20:22:43 +0200 |
commit | 25a1bfed5c56880cba009f0d5fbc3e1a182e07b1 (patch) | |
tree | 41da2cb49344297008339be393a9a40e95ceab4c /platform/android/export | |
parent | ae3c685042fba134eaa22b4ce27c1b1c6702f274 (diff) | |
parent | ba566dff2e7c3f98b0ea6e088843e4d9aaa8b531 (diff) |
Merge pull request #32210 from Calinou/editor-log-distinguish-messages
Distinguish editor-originating messages in the editor log
Diffstat (limited to 'platform/android/export')
-rw-r--r-- | platform/android/export/export.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/platform/android/export/export.cpp b/platform/android/export/export.cpp index 1c4450c0c3..567f7e7b09 100644 --- a/platform/android/export/export.cpp +++ b/platform/android/export/export.cpp @@ -1474,8 +1474,8 @@ public: if (use_remote) { if (use_reverse) { - static const char *const msg = "** Device API >= 21; debugging over USB **"; - EditorNode::get_singleton()->get_log()->add_message(msg); + static const char *const msg = "--- Device API >= 21; debugging over USB ---"; + EditorNode::get_singleton()->get_log()->add_message(msg, EditorLog::MSG_TYPE_EDITOR); print_line(String(msg).to_upper()); args.clear(); @@ -1515,8 +1515,8 @@ public: } } else { - static const char *const msg = "** Device API < 21; debugging over Wi-Fi **"; - EditorNode::get_singleton()->get_log()->add_message(msg); + static const char *const msg = "--- Device API < 21; debugging over Wi-Fi ---"; + EditorNode::get_singleton()->get_log()->add_message(msg, EditorLog::MSG_TYPE_EDITOR); print_line(String(msg).to_upper()); } } |