Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 2cef32db1b6616b1f0ce05be262e93604052f881 (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
/*******************************************************************************
 * Copyright (c) 2008-2010 Sonatype, Inc.
 * 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:
 *      Sonatype, Inc. - initial API and implementation
 *******************************************************************************/

package org.eclipse.m2e.core.core;

import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.ILog;
import org.eclipse.core.runtime.IStatus;
import org.eclipse.core.runtime.Status;


/**
 * Maven Logger
 * 
 * @author Eugene Kuleshov
 */
public class MavenLogger {

  private static ILog LOG;

  public static void setLog(ILog log) {
    LOG = log;
  }

  public static void log(IStatus status) {
    LOG.log(status);
  }

  public static void log(CoreException ex) {
    IStatus s = ex.getStatus();
    if(s.getException() == null) {
      int n = s.getSeverity();
      log(new Status(n == IStatus.CANCEL || n == IStatus.ERROR || n == IStatus.INFO //
          || n == IStatus.WARNING || n == IStatus.OK ? n : IStatus.ERROR, //
          s.getPlugin() == null ? IMavenConstants.PLUGIN_ID : s.getPlugin(), //
          s.getCode(), //
          s.getMessage() == null ? s.toString() : s.getMessage(), //
          ex));
    } else {
      log(s);
    }
  }

  public static void log(String msg, Throwable t) {
    log(new Status(IStatus.ERROR, IMavenConstants.PLUGIN_ID, msg, t));
  }

  public static void log(String msg) {
    log(new Status(IStatus.OK, IMavenConstants.PLUGIN_ID, msg));
  }
}

Back to the top