1 /*----------------------------------------------------------------------*\
2 |* spkg - The Unofficial Slackware Linux Package Manager *|
3 |* designed by Ondøej Jirman, 2005 *|
4 |*----------------------------------------------------------------------*|
5 |* No copy/usage restrictions are imposed on anybody. *|
6 \*----------------------------------------------------------------------*/
13 static gint _msg_verbosity
= 1;
15 void msg_setup(gint verbosity
)
17 _msg_verbosity
= verbosity
;
20 void msg(const gint type
, const gchar
* fmt
, ...)
23 if (_msg_verbosity
< type
)