summaryrefslogtreecommitdiff
path: root/tools/editor/io_plugins
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2016-07-24 00:02:19 +0200
committerRémi Verschelde <rverschelde@gmail.com>2016-07-24 00:02:19 +0200
commit308d405c31f83ce538fea76d6e88931718afc012 (patch)
treec1b30c9d9fd9c60d1bf527f4e1fdb9f0c949b873 /tools/editor/io_plugins
parentebefdaa598e29791ba83598fd3e3aa3f52f2bf31 (diff)
Turn some prints to error logs, remove others
Fixes #5876 in passing.
Diffstat (limited to 'tools/editor/io_plugins')
-rw-r--r--tools/editor/io_plugins/editor_mesh_import_plugin.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/tools/editor/io_plugins/editor_mesh_import_plugin.cpp b/tools/editor/io_plugins/editor_mesh_import_plugin.cpp
index 2c3ed2afd6..da608292c1 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];