diff options
| author | Rémi Verschelde | 2016-07-24 00:02:19 +0200 |
|---|---|---|
| committer | Rémi Verschelde | 2016-07-24 00:02:19 +0200 |
| commit | 308d405c31f83ce538fea76d6e88931718afc012 (patch) | |
| tree | c1b30c9d9fd9c60d1bf527f4e1fdb9f0c949b873 /tools | |
| parent | ebefdaa598e29791ba83598fd3e3aa3f52f2bf31 (diff) | |
| download | godot-308d405c31f83ce538fea76d6e88931718afc012.tar.gz godot-308d405c31f83ce538fea76d6e88931718afc012.tar.zst godot-308d405c31f83ce538fea76d6e88931718afc012.zip | |
Turn some prints to error logs, remove others
Fixes #5876 in passing.
Diffstat (limited to 'tools')
| -rw-r--r-- | tools/editor/editor_file_system.cpp | 2 | ||||
| -rw-r--r-- | tools/editor/io_plugins/editor_mesh_import_plugin.cpp | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/tools/editor/editor_file_system.cpp b/tools/editor/editor_file_system.cpp index cb7cefea2..582b9e249 100644 --- a/tools/editor/editor_file_system.cpp +++ b/tools/editor/editor_file_system.cpp @@ -657,7 +657,7 @@ void EditorFileSystem::_scan_new_dir(EditorFileSystemDirectory *p_dir,DirAccess da->change_dir(".."); } } else { - ERR_PRINTS(TTR("Cannot go into subdir:")+" "+E->get()); + ERR_PRINTS("Cannot go into subdir: "+E->get()); } p_progress.update(idx,total); diff --git a/tools/editor/io_plugins/editor_mesh_import_plugin.cpp b/tools/editor/io_plugins/editor_mesh_import_plugin.cpp index 2c3ed2afd..da608292c 100644 --- a/tools/editor/io_plugins/editor_mesh_import_plugin.cpp +++ b/tools/editor/io_plugins/editor_mesh_import_plugin.cpp @@ -496,7 +496,6 @@ Error EditorMeshImportPlugin::import(const String& p_path, const Ref<ResourceImp } int vtx = face[idx][0].to_int()-1; - print_line("vtx: "+itos(vtx)+"/"+itos(vertices.size())); ERR_FAIL_INDEX_V(vtx,vertices.size(),ERR_PARSE_ERROR); Vector3 vertex = vertices[vtx]; |
