also docs give this interface of Debug:

public interface Debug
{
    int OFF = Integer.MIN_VALUE;
    int LOWLOW = -100;
    int LOW = -50;
    int NORMAL = 0;
    int HIGH = 50;
    int HIGHHIGH = 100;

    Property<Integer> debugLevel();

    void debug( int level, String message );

    void debug( int level, String message, Object param1 );

    void debug( int level, String message,
                Object param1, Object param2 );

    void debug( int level, String message, Object... params );
}

but sources declare debugLevel as

Integer debugLevel();

not

Property<Integer> debugLevel();

On Sat, Nov 7, 2009 at 12:20 PM, Alex Shneyderman
<[email protected]> wrote:
> How do I set the debug level ?
>
> I tried to create
>
> org/qi4j/logging/debug/service/DebuggingService.properties
> debugLevel=100
>
> then adding debug service to the module like this:
>
> module.addServices( DebuggingServiceComposite.class );
>
> but when I do:
>
> @This private Debug debug;
>
> and debug.debugLevel() returns null.
>
> Any clues?
>

_______________________________________________
qi4j-dev mailing list
[email protected]
http://lists.ops4j.org/mailman/listinfo/qi4j-dev

Reply via email to