aboutsummaryrefslogtreecommitdiff
path: root/split_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 /split_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 'split_path.c')
-rw-r--r--split_path.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/split_path.c b/split_path.c
index 1f5b960..5a86269 100644
--- a/split_path.c
+++ b/split_path.c
@@ -66,8 +66,8 @@ void split_path_setup(void)
split_path_class = class_new(gensym("split_path"), (t_newmethod)split_path_new, 0,
sizeof(t_split_path), 0,0);
class_addsymbol(split_path_class,split_path_symbol);
- verbose(0, "[split_path] %s",version);
- verbose(0, "\twritten by Hans-Christoph Steiner <hans@eds.org>");
+ logpost(NULL, 4, "[split_path] %s",version);
+ logpost(NULL, 4, "\twritten by Hans-Christoph Steiner <hans@eds.org>");
}