Skip to main content
summaryrefslogtreecommitdiffstats
blob: 1c6da5b9d4ee2bea38421dc9f821916ca8e06e41 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
/*
 * <copyright>
 *
 * Copyright (c) 2005-2006 Markus Voelter and others.
 * All rights reserved.   This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     Markus Voelter - Initial API and implementation
 *
 * </copyright>
 */
package org.eclipse.m2t.common.recipe.ui.shared.iface;

public interface ITraceLog
{
  /**
   * Trace level <code>CRITICAL</code>.
   */
  public static final int CRITICAL    =   1;

  /**
   * Trace level <code>ERROR</code>.
   */
  public static final int ERROR       =   2;

  /**
   * Trace level <code>INFO</code>.
   */
  public static final int INFO        =   4;

  /**
   * Trace level <code>DEBUG</code>.
   */
  public static final int DEBUG       =   8;

  /**
   * Trace level <code>TRACE</code>.
   */
  public static final int TRACE       =  16;

  /**
   * Trace level <code>EXCEPTION</code>.
   */
  public static final int EXCEPTION   =  32;

  /**
   * Trace level <code>QUIET</code>.
   */
  public static final int QUIET       =   0;

  /**
   * Trace level <code>ALL</code>.
   */
  public static final int VERBOSE     = 63;

  /**
   * <code>DEFAULT_LOGLEVEL</code>. Identifies to log all by default.
   */
  public static final int DEFAULT_LOGLEVEL = VERBOSE;

  /**
   * <code>DEFAULT_LOGPATH</code>. Identifies the default path to log to.
   */
  public static final String DEFAULT_LOGPATH = "Trace.log";
}

Back to the top