📄 i_cmslogchannels.java
字号:
/*
* File : $Source: /usr/local/cvs/opencms/src/com/opencms/boot/I_CmsLogChannels.java,v $
* Date : $Date: 2002/05/10 20:54:10 $
* Version: $Revision: 1.9 $
*
* This library is part of OpenCms -
* the Open Source Content Mananagement System
*
* Copyright (C) 2001 The OpenCms Group
*
* This library 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 2.1 of the License, or (at your option) any later version.
*
* This library 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
* Lesser General Public License for more details.
*
* For further information about OpenCms, please see the
* OpenCms Website: http://www.opencms.org
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
package com.opencms.boot;
/**
* Common interface for OpenCms logging.
* Constants used for logging purposes are defined here.
*
* @author Alexander Lucas
* @author Andreas Schouten
* @version $Revision: 1.9 $ $Date: 2002/05/10 20:54:10 $
*/
public interface I_CmsLogChannels {
/**
* This static final constant is a "preprocessor" constant. If it is set to
* true - all logging-code is enabled and will be compiled into the classes.
* If it is set to false the logging-code will not be compiled into the
* classes. All resulting classes will shrink in size and OpenCms will
* perform much better. For live-systems you could set this to false,
* in case you really have performance issues.
*
* If logging is disabled here, you can't switch it on again via the
* opencms.properties!
*
* This value should generally be set to true!
*/
public static final boolean C_PREPROCESSOR_IS_LOGGING = true;
/** Debugging messages */
public static final String C_OPENCMS_INIT = "opencms_init";
/** Debugging messages */
public static final String C_OPENCMS_DEBUG = "opencms_debug";
/** Cache messages */
public static final String C_OPENCMS_CACHE = "opencms_cache";
/** Debugging messages for the streaming mode */
public static final String C_OPENCMS_STREAMING = "opencms_streaming";
/** Informational messages */
public static final String C_OPENCMS_INFO = "opencms_info";
/** Critical messages that stop further processing */
public static final String C_OPENCMS_CRITICAL = "opencms_critical";
/** Debugging messages for the dbpool */
public static final String C_OPENCMS_POOL = "opencms_pool";
/** Messages of the new OpenCms element cache */
public static final String C_OPENCMS_ELEMENTCACHE = "opencms_elementcache";
/** Messages of the OpenCms Scheduler */
public static final String C_OPENCMS_CRONSCHEDULER = "opencms_cronscheduler";
/** Messages of the static export */
public static final String C_OPENCMS_STATICEXPORT = "opencms_staticexport";
/** Debugging messages */
public static final String C_MODULE_DEBUG = "module_debug";
/** Informational messages */
public static final String C_MODULE_INFO = "module_info";
/** Critical messages that stop further processing */
public static final String C_MODULE_CRITICAL = "module_critical";
/** Flex cache messages */
public static final String C_FLEX_CACHE = "flex_cache";
/** Flex loader messages */
public static final String C_FLEX_LOADER = "flex_loader";
/** Flex ClassLoader messages */
public static final String C_FLEX_CLASSLOADER = "flex_classloader";
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -