Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: cdb3f2cac3c9def4024c2059830cb2e32ed3a350 (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
/****************************************************************************
 * Copyright (c) 2004 Composent, Inc. 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:
 *    Composent, Inc. - initial API and implementation
 *****************************************************************************/

package org.eclipse.ecf.core.util;

import java.util.Arrays;

import org.eclipse.core.runtime.IStatus;
import org.osgi.service.log.LogService;

public class LogHelper {

	public static int getLogCode(IStatus status) {
		switch (status.getCode()) {
			case IStatus.CANCEL :
				return LogService.LOG_INFO;
			case IStatus.ERROR :
				return LogService.LOG_ERROR;
			case IStatus.INFO :
				return LogService.LOG_INFO;
			case IStatus.OK :
				return LogService.LOG_INFO;
			case IStatus.WARNING :
				return LogService.LOG_WARNING;
			default :
				return IStatus.INFO;
		}
	}

	/**
	 * @param status
	 * @return String the string version of the status
	 */
	public static String getLogMessage(IStatus status) {
		if (status == null)
			return ""; //$NON-NLS-1$
		StringBuilder buf = new StringBuilder(status.getClass().getName() + '[');
		buf.append("plugin=").append(status.getPlugin()); //$NON-NLS-1$
		buf.append(";code=").append(status.getCode()); //$NON-NLS-1$
		buf.append(";message=").append(status.getMessage()); //$NON-NLS-1$
		buf.append(";severity").append(status.getSeverity()); //$NON-NLS-1$
		buf.append(";exception=").append(status.getException()); //$NON-NLS-1$
		buf.append(";children=").append(Arrays.asList(status.getChildren())) //$NON-NLS-1$
				.append(']');
		return buf.toString();
	}

}

Back to the top