2 wmget - A background download manager as a Window Maker dock app
3 Copyright (c) 2001-2003 Aaron Trickey <aaron@amtrickey.net>
5 Permission is hereby granted, free of charge, to any person
6 obtaining a copy of this software and associated documentation files
7 (the "Software"), to deal in the Software without restriction,
8 including without limitation the rights to use, copy, modify, merge,
9 publish, distribute, sublicense, and/or sell copies of the Software,
10 and to permit persons to whom the Software is furnished to do so,
11 subject to the following conditions:
13 The above copyright notice and this permission notice shall be
14 included in all copies or substantial portions of the Software.
16 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19 NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
20 CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
21 TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
22 SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
24 ********************************************************************
25 messages.c - functions for writing error, status, & debug messages
34 static OutputLevel output_level_
;
37 void set_output_level (OutputLevel lev
)
43 OutputLevel
output_level (void)
49 void error (const char *fmt
, ...)
53 vfprintf (stderr
, fmt
, ap
);
58 void error_sys (const char *fmt
, ...)
62 vfprintf (stderr
, fmt
, ap
);
67 void info (const char *fmt
, ...)
71 if (output_level_
< OL_NORMAL
)
75 vfprintf (stderr
, fmt
, ap
);
80 void debug (const char *fmt
, ...)
84 if (output_level_
< OL_DEBUG
)
88 vfprintf (stderr
, fmt
, ap
);
93 void debug_sys (const char *fmt
, ...)
97 if (output_level_
< OL_DEBUG
)
101 vfprintf (stderr
, fmt
, ap
);