2008-08-06 18:36:30 +00:00
|
|
|
// This file is part of BOINC.
|
2005-01-20 23:22:22 +00:00
|
|
|
// http://boinc.berkeley.edu
|
2008-08-06 18:36:30 +00:00
|
|
|
// Copyright (C) 2008 University of California
|
2004-08-05 21:42:27 +00:00
|
|
|
//
|
2008-08-06 18:36:30 +00:00
|
|
|
// BOINC is free software; you can redistribute it and/or modify it
|
|
|
|
// under the terms of the GNU Lesser General Public License
|
|
|
|
// as published by the Free Software Foundation,
|
|
|
|
// either version 3 of the License, or (at your option) any later version.
|
2005-01-20 23:22:22 +00:00
|
|
|
//
|
2008-08-06 18:36:30 +00:00
|
|
|
// BOINC is distributed in the hope that it will be useful,
|
2005-01-20 23:22:22 +00:00
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
// See the GNU Lesser General Public License for more details.
|
|
|
|
//
|
2008-08-06 18:36:30 +00:00
|
|
|
// You should have received a copy of the GNU Lesser General Public License
|
|
|
|
// along with BOINC. If not, see <http://www.gnu.org/licenses/>.
|
2004-08-05 21:42:27 +00:00
|
|
|
|
2007-03-14 22:59:26 +00:00
|
|
|
#ifndef _BOINC_SCHED_MSGS_H_
|
|
|
|
#define _BOINC_SCHED_MSGS_H_
|
|
|
|
|
2004-04-08 08:15:23 +00:00
|
|
|
#include "msg_log.h"
|
|
|
|
|
2008-02-05 21:26:43 +00:00
|
|
|
#ifdef _USING_FCGI_
|
2008-09-09 19:10:42 +00:00
|
|
|
#include "boinc_fcgi.h"
|
2008-02-05 21:26:43 +00:00
|
|
|
#endif
|
|
|
|
|
2008-03-13 18:27:23 +00:00
|
|
|
enum { MSG_CRITICAL=1, MSG_NORMAL, MSG_DEBUG };
|
2008-02-21 21:00:58 +00:00
|
|
|
|
2004-04-08 08:15:23 +00:00
|
|
|
class SCHED_MSG_LOG : public MSG_LOG {
|
|
|
|
const char* v_format_kind(int kind) const;
|
|
|
|
bool v_message_wanted(int kind) const;
|
|
|
|
public:
|
2007-04-24 23:21:42 +00:00
|
|
|
int debug_level;
|
2008-03-13 18:27:23 +00:00
|
|
|
enum { MSG_CRITICAL=1, MSG_NORMAL, MSG_DEBUG };
|
2007-04-20 17:14:08 +00:00
|
|
|
SCHED_MSG_LOG(): MSG_LOG(stderr) { debug_level = MSG_NORMAL; }
|
2004-04-08 08:15:23 +00:00
|
|
|
void set_debug_level(int new_level) { debug_level = new_level; }
|
2008-02-27 22:26:37 +00:00
|
|
|
void set_indent_level(const int new_indent_level);
|
2008-02-05 21:26:43 +00:00
|
|
|
#ifdef _USING_FCGI_
|
|
|
|
~SCHED_MSG_LOG();
|
2009-01-13 23:06:02 +00:00
|
|
|
void redirect(FCGI_FILE* f);
|
2008-02-05 21:26:43 +00:00
|
|
|
void close();
|
|
|
|
void flush();
|
|
|
|
#endif
|
2004-04-08 08:15:23 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
extern SCHED_MSG_LOG log_messages;
|
2007-03-14 22:59:26 +00:00
|
|
|
#endif
|