blob: 9d3cf208f244a75431c4af7d4791643b9082c536 [file] [log] [blame]
package org.slf4j.issues;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import junit.framework.TestCase;
public class Issue324Test extends TestCase {
public void testLoggerCreationInPresenceOfSecurityManager() {
String currentDir = System.getProperty("user.dir");
System.out.println("currentDir:" + currentDir);
Logger logger = LoggerFactory.getLogger(Issue324Test.class);
logger.debug("hello");
}
}