01: /*
02: * $Id:$
03: * IzPack - Copyright 2001-2008 Julien Ponge, All Rights Reserved.
04: *
05: * http://www.izforge.com/izpack/
06: * http://izpack.codehaus.org/
07: *
08: * Copyright 2007 Klaus Bartz
09: *
10: * Licensed under the Apache License, Version 2.0 (the "License");
11: * you may not use this file except in compliance with the License.
12: * You may obtain a copy of the License at
13: *
14: * http://www.apache.org/licenses/LICENSE-2.0
15: *
16: * Unless required by applicable law or agreed to in writing, software
17: * distributed under the License is distributed on an "AS IS" BASIS,
18: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19: * See the License for the specific language governing permissions and
20: * limitations under the License.
21: */
22: package com.izforge.izpack.util;
23:
24: /**
25: * This interface contains common used templates and channel names for debug messages using class
26: * {@link com.izforge.izpack.util.Log <code>LogMessage</code>}
27: *
28: * @author Klaus Bartz
29: *
30: */
31: public interface DebugConstants {
32:
33: /** Channel name for debug message about panel tracing. */
34: public final static String PANEL_TRACE = "PanelTrace";
35:
36: /** Channel name for debug message about layout tracing. */
37: public final static String LAYOUT_TRACE = "LayoutTrace";
38:
39: /** Channel name for debug message which will be triggered by the old logging system (not yet implemented). */
40: public final static String OLD_DEBUG_TRACE = "DebugTrace";
41:
42: /** Channel name for debug message which will be triggered by the old logging system (not yet implemented). */
43: public final static String OLD_DEBUG_STACKTRACE = "DebugStackTrace";
44: }
|