From 97428d8d0bcfc8873ff6e2b34a1f65f6095e3746 Mon Sep 17 00:00:00 2001 From: Dave Schuyler Date: Wed, 6 Jul 2005 02:22:27 +0000 Subject: [PATCH] more debug output --- panda/src/pgraph/loader.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/panda/src/pgraph/loader.cxx b/panda/src/pgraph/loader.cxx index 4c07705c38..c1a4fa66b8 100644 --- a/panda/src/pgraph/loader.cxx +++ b/panda/src/pgraph/loader.cxx @@ -449,7 +449,7 @@ load_file(const Filename &filename, bool search) const { return NULL; } - for (int i = 0; i < num_files; i++) { + for (int i = 0; i < num_files; ++i) { const Filename &path = results.get_file(i); LoaderFileType *type = results.get_file_type(i); PT(PandaNode) result = type->load_file(path, true); @@ -462,8 +462,8 @@ load_file(const Filename &filename, bool search) const { if (search) { loader_cat.error() << "Couldn't load file " << filename - << ": all matching files on model path invalid.\n"; - + << ": all matching files on model path invalid " + << "(the model path is currently: \"" << get_model_path() << "\")\n"; } else { loader_cat.error() << "Couldn't load file " << filename