aboutsummaryrefslogtreecommitdiff
path: root/ce_path.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 /ce_path.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 'ce_path.c')
-rw-r--r--ce_path.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/ce_path.c b/ce_path.c
index da69123..97a214e 100644
--- a/ce_path.c
+++ b/ce_path.c
@@ -104,8 +104,8 @@ void ce_path_setup(void)
class_addmethod(ce_path_class, (t_method) ce_path_rewind,
gensym("rewind"), 0);
- verbose(0, "[ce_path] %s", version);
- verbose(0, "\tcompiled on "__DATE__" at "__TIME__ " ");
- verbose(0, "\tcompiled against Pd version %d.%d.%d", PD_MAJOR_VERSION,
+ logpost(NULL, 4, "[ce_path] %s", version);
+ 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);
}