01: // You can redistribute this software and/or modify it under the terms of
02: // the Ozone Library License version 1 published by ozone-db.org.
03: //
04: // The original code and portions created by SMB are
05: // Copyright (C) 1997-@year@ by SMB GmbH. All rights reserved.
06: //
07: // $Id: LogTarget.java,v 1.1 2001/12/18 10:31:31 per_nyfelt Exp $
08:
09: package org.ozoneDB.util;
10:
11: import java.io.*;
12:
13: /**
14: * @author <a href="http://www.softwarebuero.de/">SMB</a>
15: * @version $Revision: 1.1 $Date: 2001/12/18 10:31:31 $
16: */
17: class LogTarget {
18:
19: public PrintWriter writer;
20:
21: public int levels;
22:
23: public LogTarget(PrintWriter _writer, int _levels) {
24: writer = _writer;
25: levels = _levels;
26: }
27:
28: }
|