1 /*
2 * Copyright (C) The JContainer Group. All rights reserved.
3 *
4 * This software is published under the terms of the JContainer
5 * Software License version 1.1, a copy of which has been included
6 * with this distribution in the LICENSE.txt file.
7 */
8 package org.jcontainer.dna.impl;
9
10 class MockConsoleLogger
11 extends ConsoleLogger
12 {
13 public MockConsoleLogger()
14 {
15 }
16
17 public MockConsoleLogger( final int level )
18 {
19 super( level );
20 }
21
22 boolean m_output;
23 String m_type;
24 String m_message;
25 Throwable m_throwable;
26
27 void doOutput( String type,
28 String message,
29 Throwable throwable )
30 {
31 m_output = true;
32 m_type = type;
33 m_message = message;
34 m_throwable = throwable;
35 }
36 }
This page was automatically generated by Maven