summaryrefslogtreecommitdiff
path: root/gtk2_ardour/main.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2020-03-25 11:39:32 -0600
committerPaul Davis <paul@linuxaudiosystems.com>2020-03-25 11:39:32 -0600
commitf8b16e9e8390212a2b161d8c92ede6b4a4473261 (patch)
treedfe51f035c7501232cd08c0002514775f7d955fc /gtk2_ardour/main.cc
parent04aebc920e1baebeaf8e623477d45e5afdb94898 (diff)
remove a few cerr outputs and change a couple to use cout, since they are not errors
Diffstat (limited to 'gtk2_ardour/main.cc')
-rw-r--r--gtk2_ardour/main.cc5
1 files changed, 4 insertions, 1 deletions
diff --git a/gtk2_ardour/main.cc b/gtk2_ardour/main.cc
index 401ea67b7e..e1d3ec0fe6 100644
--- a/gtk2_ardour/main.cc
+++ b/gtk2_ardour/main.cc
@@ -329,7 +329,10 @@ int main (int argc, char *argv[])
#endif
#if ENABLE_NLS
+
+#ifndef NDEBUG
cerr << "bind txt domain [" << PACKAGE << "] to " << localedir << endl;
+#endif
(void) bindtextdomain (PACKAGE, localedir.c_str());
/* our i18n translations are all in UTF-8, so make sure
@@ -383,7 +386,7 @@ int main (int argc, char *argv[])
}
if (no_splash) {
- cerr << _("Copyright (C) 1999-2020 Paul Davis") << endl
+ cout << _("Copyright (C) 1999-2020 Paul Davis") << endl
<< _("Some portions Copyright (C) Steve Harris, Ari Johnson, Brett Viren, Joel Baker, Robin Gareus") << endl
<< endl
<< string_compose (_("%1 comes with ABSOLUTELY NO WARRANTY"), PROGRAM_NAME) << endl