aboutsummaryrefslogtreecommitdiff
path: root/stat.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 /stat.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 'stat.c')
-rw-r--r--stat.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/stat.c b/stat.c
index 811de38..cd63dab 100644
--- a/stat.c
+++ b/stat.c
@@ -297,8 +297,8 @@ void stat_setup(void)
/* add inlet message methods */
class_addmethod(stat_class,(t_method) stat_set,gensym("set"),
A_DEFSYM, 0);
- verbose(0, "[stat] %s",version);
- verbose(0, "\twritten by Hans-Christoph Steiner <hans@eds.org>");
- verbose(0, "\tcompiled on "__DATE__" at "__TIME__ " ");
+ logpost(NULL, 4, "[stat] %s",version);
+ logpost(NULL, 4, "\twritten by Hans-Christoph Steiner <hans@eds.org>");
+ logpost(NULL, 4, "\tcompiled on "__DATE__" at "__TIME__ " ");
}