blob: e4ca11b477e0eadb2018c2e9e3d07f759f978388 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2008, 2010 VMware 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:
* VMware Inc. - initial contribution
*******************************************************************************/
package org.eclipse.virgo.kernel.shim.serviceability.internal;
import org.eclipse.virgo.kernel.shim.serviceability.TracingService;
import org.slf4j.MDC;
public final class Slf4jTracingService implements TracingService {
public static final String APPLICATION_NAME = "applicationName";
public String getCurrentApplicationName() {
return MDC.get(APPLICATION_NAME);
}
public void setCurrentApplicationName(String applicationName) {
MDC.put(APPLICATION_NAME, applicationName);
}
}