aboutsummaryrefslogtreecommitdiff
path: root/classpath.c
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2012-02-26 04:51:34 +0000
committerHans-Christoph Steiner <eighthave@users.sourceforge.net>2012-02-26 04:51:34 +0000
commit92797a064b956441789f682d3f58ac22d3db79e3 (patch)
treeb869fa2fde67e5517495d3e358747ca511d0b2ea /classpath.c
parent42908b44c083d6c5cfb3f04b2936990f9c25816d (diff)
replace verbose() with logpost() since verbose() adds extraneous carraige returns to messages that have been filtered out by the log level
svn path=/trunk/externals/hcs/; revision=16033
Diffstat (limited to 'classpath.c')
-rw-r--r--classpath.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/classpath.c b/classpath.c
index aa0cfb3..4b81b63 100644
--- a/classpath.c
+++ b/classpath.c
@@ -133,10 +133,10 @@ void classpath_setup(void)
class_addmethod(classpath_class,(t_method) classpath_add,gensym("add"),
A_DEFSYMBOL, 0);
- verbose(0, "[classpath] %s",version);
- verbose(0, "\twritten by Hans-Christoph Steiner <hans@eds.org>");
- verbose(0, "\tcompiled on "__DATE__" at "__TIME__ " ");
- verbose(0, "\tcompiled against Pd version %d.%d.%d", PD_MAJOR_VERSION,
+ logpost(NULL, 4, "[classpath] %s",version);
+ logpost(NULL, 4, "\twritten by Hans-Christoph Steiner <hans@eds.org>");
+ logpost(NULL, 4, "\tcompiled on "__DATE__" at "__TIME__ " ");
+ logpost(NULL, 4, "\tcompiled against Pd version %d.%d.%d", PD_MAJOR_VERSION,
PD_MINOR_VERSION, PD_BUGFIX_VERSION);
}