From 0bb4ef9ac2dae2613fdb82ca758f6d6a57075576 Mon Sep 17 00:00:00 2001 From: Ken Conley Date: Wed, 15 Feb 2012 01:17:30 +0000 Subject: [PATCH] #3767: fix from kruset for better error reporting --- core/roslib/src/roslib/msgs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/roslib/src/roslib/msgs.py b/core/roslib/src/roslib/msgs.py index a980d7b9..65351eb1 100644 --- a/core/roslib/src/roslib/msgs.py +++ b/core/roslib/src/roslib/msgs.py @@ -449,7 +449,7 @@ def get_pkg_msg_specs(package): specs.append(typespec) except Exception as e: failures.append(t) - print("ERROR: unable to load %s"%t) + print("ERROR: unable to load %s, %s"%(t, e)) return specs, failures def load_package_dependencies(package, load_recursive=False):