blob: 999486cf4d1a163a1db11ca4cc9590a55ae05cc7 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010 Sonatype, Inc.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Sonatype, Inc. - initial API and implementation
*******************************************************************************/
package org.eclipse.m2e.logback.configuration;
import java.util.Properties;
import java.util.SortedMap;
import java.util.TreeMap;
import org.slf4j.Logger;
public class LogHelper {
public static void logJavaProperties(Logger log) {
Properties javaProperties = System.getProperties();
SortedMap<String, String> sortedProperties = new TreeMap<String, String>();
for(String key : javaProperties.stringPropertyNames()) {
sortedProperties.put(key, javaProperties.getProperty(key));
}
log.debug("Java properties (ordered by property name):"); //$NON-NLS-1$
for(String key : sortedProperties.keySet()) {
log.debug(" {}={}", key, sortedProperties.get(key));
}
}
}