![JAR search and dependency download from the Maven repository](/logo.png)
org.eclipse.sisu.inject.LoggingExample Maven / Gradle / Ivy
The newest version!
/*******************************************************************************
* Copyright (c) 2010, 2013 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:
* Stuart McCulloch (Sonatype, Inc.) - initial API and implementation
*******************************************************************************/
package org.eclipse.sisu.inject;
import com.google.inject.AbstractModule;
import com.google.inject.Guice;
import com.google.inject.Module;
public class LoggingExample
{
static class BadValue
{
@Override
public String toString()
{
throw new RuntimeException( "sigh" );
}
}
public LoggingExample()
{
Logs.trace( "", null, null );
Logs.trace( "", "a", "b" );
Logs.trace( "{", null, null );
Logs.trace( "}", "a", "b" );
Logs.trace( "}{", null, null );
Logs.trace( "{}", "a", "b" );
Logs.trace( "}{}", null, null );
Logs.trace( "{{}", "a", "b" );
Logs.trace( "{}{", null, null );
Logs.trace( "{}}", "a", "b" );
Logs.trace( "{{}}", null, null );
Logs.trace( "}{}{", "a", "b" );
Logs.trace( "{}{}", null, null );
Logs.trace( "{}{}", "a", "b" );
Logs.trace( "{{}}{{}}", null, null );
Logs.trace( "{}-{}", "a", "b" );
Logs.trace( "{} {}", new BadValue(), new BadValue() );
Logs.trace( "Error: {} cause: {}", "oops", new Exception( "doh!" ) );
Logs.warn( "", null, null );
Logs.warn( "", "a", "b" );
Logs.warn( "{", null, null );
Logs.warn( "}", "a", "b" );
Logs.warn( "}{", null, null );
Logs.warn( "{}", "a", "b" );
Logs.warn( "}{}", null, null );
Logs.warn( "{{}", "a", "b" );
Logs.warn( "{}{", null, null );
Logs.warn( "{}}", "a", "b" );
Logs.warn( "{{}}", null, null );
Logs.warn( "}{}{", "a", "b" );
Logs.warn( "{}{}", null, null );
Logs.warn( "{}{}", "a", "b" );
Logs.warn( "{{}}{{}}", null, null );
Logs.warn( "{}-{}", "a", "b" );
Logs.warn( "{} {}", new BadValue(), new BadValue() );
Logs.warn( "Error: {} cause: {}", "oops", new Exception( "doh!" ) );
final Module module = new AbstractModule()
{
@Override
protected void configure()
{
bind( Object.class ).to( BadValue.class );
}
};
Logs.trace( Logs.toString( module ), null, null );
Logs.trace( Logs.toString( Guice.createInjector( module ) ), null, null );
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy