aboutsummaryrefslogtreecommitdiff
path: root/src/simpleapdu/DirtyLogger.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/simpleapdu/DirtyLogger.java')
-rw-r--r--src/simpleapdu/DirtyLogger.java48
1 files changed, 0 insertions, 48 deletions
diff --git a/src/simpleapdu/DirtyLogger.java b/src/simpleapdu/DirtyLogger.java
deleted file mode 100644
index c06571b..0000000
--- a/src/simpleapdu/DirtyLogger.java
+++ /dev/null
@@ -1,48 +0,0 @@
-package simpleapdu;
-
-import java.io.FileOutputStream;
-import java.io.IOException;
-
-/**
- *
- * @author xsvenda
- */
-public class DirtyLogger {
- FileOutputStream m_logFile;
- boolean m_bOutputSystemOut = true;
-
- public DirtyLogger(FileOutputStream logFile, boolean bOutputSystemOut) {
- m_logFile = logFile;
- m_bOutputSystemOut = bOutputSystemOut;
- }
- public void println() {
- String logLine = "\n";
- print(logLine);
- }
- public void println(String logLine) {
- logLine += "\n";
- print(logLine);
- }
- public void print(String logLine) {
- if (m_bOutputSystemOut) {
- System.out.print(logLine);
- }
- if (m_logFile != null) {
- try {
- m_logFile.write(logLine.getBytes());
- } catch (IOException ex) {
- }
- }
- }
-
- void flush() {
- try {
- m_logFile.flush();
- } catch (IOException ex) {
- }
- }
-
- void close() throws IOException {
- m_logFile.close();
- }
-}