1
2
3
4
5
6
7
8 package net.sf.tlc.logging.impl;
9
10 import net.sf.tlc.logging.ConsoleInterceptor;
11
12 /***
13 * The DefaultConsoleInterceptor merely implements the ConsoleInterceptor
14 * interface but really does nothing - i.e., everything gets sent to System.out
15 * anyway.
16 *
17 * @author aisrael
18 */
19 public class DefaultConsoleInterceptor implements ConsoleInterceptor {
20
21 /***
22 * (non-Javadoc)
23 *
24 * @see net.sf.tlc.logging.ConsoleInterceptor#setupInterception()
25 */
26 public final void setupInterception() {
27 }
28
29 /***
30 * (non-Javadoc)
31 *
32 * @see net.sf.tlc.logging.ConsoleInterceptor#giveupInterception()
33 */
34 public final void giveupInterception() {
35 }
36
37 }