From f89a811cf6a6b0283ba92c5c980d4dec511bc981 Mon Sep 17 00:00:00 2001 From: David Rose Date: Thu, 1 Oct 2009 19:14:53 +0000 Subject: [PATCH] wrong severity level --- panda/src/display/subprocessWindow.cxx | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/panda/src/display/subprocessWindow.cxx b/panda/src/display/subprocessWindow.cxx index 6a1ccf2039..2cc769e435 100644 --- a/panda/src/display/subprocessWindow.cxx +++ b/panda/src/display/subprocessWindow.cxx @@ -417,8 +417,10 @@ internal_open_window() { return false; } - display_cat.error() - << "SubprocessWindow reading " << _filename << "\n"; + if (display_cat.is_debug()) { + display_cat.debug() + << "SubprocessWindow reading " << _filename << "\n"; + } return true; }