diff options
-rw-r--r-- | ce_path.c | 6 | ||||
-rw-r--r-- | classpath.c | 8 | ||||
-rw-r--r-- | group.c | 6 | ||||
-rw-r--r-- | helppath.c | 6 | ||||
-rw-r--r-- | passwd.c | 6 | ||||
-rw-r--r-- | split_path.c | 4 | ||||
-rw-r--r-- | stat.c | 6 |
7 files changed, 21 insertions, 21 deletions
@@ -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); } 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); } @@ -251,9 +251,9 @@ void group_setup(void) gensym("set"), A_GIMME, 0); - verbose(0, "[group] %s",version); - verbose(0, "\twritten by Hans-Christoph Steiner <hans@eds.org>"); - verbose(0, "\tcompiled on "__DATE__" at "__TIME__ " "); + logpost(NULL, 4, "[group] %s",version); + logpost(NULL, 4, "\twritten by Hans-Christoph Steiner <hans@eds.org>"); + logpost(NULL, 4, "\tcompiled on "__DATE__" at "__TIME__ " "); } #endif /* NOT _WIN32 */ @@ -128,9 +128,9 @@ void helppath_setup(void) class_addmethod(helppath_class,(t_method) helppath_add,gensym("add"), A_DEFSYMBOL, 0); - verbose(0, "[helppath] %s", version); - verbose(0, "\tcompiled on "__DATE__" at "__TIME__ " "); - verbose(0, "\tcompiled against Pd version %d.%d.%d", PD_MAJOR_VERSION, + logpost(NULL, 4, "[helppath] %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); } @@ -200,9 +200,9 @@ void passwd_setup(void) A_GIMME, 0); - verbose(0, "[passwd] %s",version); - verbose(0, "\twritten by Hans-Christoph Steiner <hans@eds.org>"); - verbose(0, "\tcompiled on "__DATE__" at "__TIME__ " "); + logpost(NULL, 4, "[passwd] %s",version); + logpost(NULL, 4, "\twritten by Hans-Christoph Steiner <hans@eds.org>"); + logpost(NULL, 4, "\tcompiled on "__DATE__" at "__TIME__ " "); } #endif /* NOT _WIN32 */ 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>"); } @@ -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__ " "); } |