2003-10-31 09:31:56 -05:00
|
|
|
/* Declarations for log.c.
|
2007-09-28 18:45:31 -04:00
|
|
|
Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006,
|
2015-03-09 11:32:01 -04:00
|
|
|
2007, 2008, 2009, 2010, 2011, 2015 Free Software Foundation, Inc.
|
2003-10-31 09:31:56 -05:00
|
|
|
|
|
|
|
This file is part of GNU Wget.
|
|
|
|
|
|
|
|
GNU Wget is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
2007-07-10 01:53:22 -04:00
|
|
|
the Free Software Foundation; either version 3 of the License, or
|
2003-10-31 09:31:56 -05:00
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
GNU Wget is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
2007-07-10 01:53:22 -04:00
|
|
|
along with Wget. If not, see <http://www.gnu.org/licenses/>.
|
2003-10-31 09:31:56 -05:00
|
|
|
|
2007-11-28 03:05:33 -05:00
|
|
|
Additional permission under GNU GPL version 3 section 7
|
|
|
|
|
|
|
|
If you modify this program, or any covered work, by linking or
|
|
|
|
combining it with the OpenSSL project's OpenSSL library (or a
|
|
|
|
modified version of that library), containing parts covered by the
|
|
|
|
terms of the OpenSSL or SSLeay licenses, the Free Software Foundation
|
|
|
|
grants you additional permission to convey the resulting work.
|
|
|
|
Corresponding Source for a non-source form of such a combination
|
|
|
|
shall include the source code for the parts of OpenSSL used as well
|
|
|
|
as that of the covered work. */
|
2003-10-31 09:31:56 -05:00
|
|
|
|
|
|
|
#ifndef LOG_H
|
|
|
|
#define LOG_H
|
|
|
|
|
2003-11-02 14:56:37 -05:00
|
|
|
/* The log file to which Wget writes to after HUP. */
|
|
|
|
#define DEFAULT_LOGFILE "wget-log"
|
|
|
|
|
2011-11-04 17:25:00 -04:00
|
|
|
#include <stdio.h>
|
|
|
|
|
2014-04-30 19:04:11 -04:00
|
|
|
enum log_options { LOG_VERBOSE, LOG_NOTQUIET, LOG_NONVERBOSE, LOG_ALWAYS, LOG_PROGRESS };
|
2003-10-31 09:31:56 -05:00
|
|
|
|
2011-11-04 17:25:00 -04:00
|
|
|
void log_set_warc_log_fp (FILE *);
|
|
|
|
|
2005-06-19 18:34:58 -04:00
|
|
|
void logprintf (enum log_options, const char *, ...)
|
2003-10-31 09:31:56 -05:00
|
|
|
GCC_FORMAT_ATTR (2, 3);
|
2005-06-19 18:34:58 -04:00
|
|
|
void debug_logprintf (const char *, ...) GCC_FORMAT_ATTR (1, 2);
|
|
|
|
void logputs (enum log_options, const char *);
|
|
|
|
void logflush (void);
|
2005-06-22 15:38:10 -04:00
|
|
|
void log_set_flush (bool);
|
|
|
|
bool log_set_save_context (bool);
|
2005-06-19 18:34:58 -04:00
|
|
|
|
2005-06-22 15:38:10 -04:00
|
|
|
void log_init (const char *, bool);
|
2005-06-19 18:34:58 -04:00
|
|
|
void log_close (void);
|
|
|
|
void log_cleanup (void);
|
|
|
|
void log_request_redirect_output (const char *);
|
|
|
|
|
|
|
|
const char *escnonprint (const char *);
|
|
|
|
const char *escnonprint_uri (const char *);
|
2005-03-04 14:34:31 -05:00
|
|
|
|
2003-10-31 09:31:56 -05:00
|
|
|
#endif /* LOG_H */
|