diff --git a/src/libsrc++/EvioException.h b/src/libsrc++/EvioException.h index daf6ff996..07afb1c08 100644 --- a/src/libsrc++/EvioException.h +++ b/src/libsrc++/EvioException.h @@ -36,6 +36,7 @@ namespace evio { EvioException(const std::string & msg, const char *file, int line) noexcept : std::runtime_error(msg) { std::ostringstream o; o << file << ":" << line << ":" << msg; + std::cerr << o.str() << std::endl; } };