From 0841323d3ee7f309569637f4f82a1c1642f8e4c9 Mon Sep 17 00:00:00 2001 From: ray Date: Mon, 4 Aug 2003 21:03:09 +0000 Subject: [PATCH] Fixed package, take a File as the first argument. git-svn-id: https://samskivert.googlecode.com/svn/trunk@1185 6335cc39-0255-0410-8fd6-9bcaacd3b74c --- .../src/java/com/samskivert/util/AuditLogger.java | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/projects/samskivert/src/java/com/samskivert/util/AuditLogger.java b/projects/samskivert/src/java/com/samskivert/util/AuditLogger.java index 849c81ec..59f84a88 100644 --- a/projects/samskivert/src/java/com/samskivert/util/AuditLogger.java +++ b/projects/samskivert/src/java/com/samskivert/util/AuditLogger.java @@ -1,7 +1,7 @@ // -// $Id: AuditLogger.java,v 1.1 2003/08/04 20:58:07 ray Exp $ +// $Id: AuditLogger.java,v 1.2 2003/08/04 21:03:09 ray Exp $ -package com.threerings.samskivert.util; +package com.samskivert.util; import java.io.File; import java.io.FileWriter; @@ -16,10 +16,6 @@ import java.util.Date; import com.samskivert.Log; -import com.samskivert.util.Interval; -import com.samskivert.util.IntervalManager; -import com.samskivert.util.Throttle; - /** * Used by various services to generate audit logs which can be useful for * auditing, debugging and other logly necessities. The audit logger @@ -32,7 +28,7 @@ public class AuditLogger /** * Creates an audit logger that logs to the specified file. */ - public AuditLogger (String path, String filename) + public AuditLogger (File path, String filename) { _logPath = new File(path, filename); openLog(true);