summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorPeter Wu <peter@lekensteyn.nl>2014-05-15 17:12:06 +0200
committerPeter Wu <peter@lekensteyn.nl>2014-05-15 17:12:06 +0200
commit9cda667f93e1b2226b8ef7eb97c00c21f3b6211e (patch)
treeb3e18370c54615d2286c7cad92d8480efcb17088 /src
parent3ac4e63b5f2820c205781585df69ea5ae360a38d (diff)
downloadGoldfarmer-9cda667f93e1b2226b8ef7eb97c00c21f3b6211e.tar.gz
Print status info for lexicons reading
Diffstat (limited to 'src')
-rw-r--r--src/main/Analyzor.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/main/Analyzor.java b/src/main/Analyzor.java
index 3ef450d..639f385 100644
--- a/src/main/Analyzor.java
+++ b/src/main/Analyzor.java
@@ -41,6 +41,7 @@ public class Analyzor {
// data is already read.
return;
}
+ System.err.println("Trying to read lexicons...");
// A unigram is in the format (WS = whitespace):
// word <WS> rating <WS> ??? <WS> ??
// A bigram has an two WS-separated words instead of one.
@@ -64,6 +65,7 @@ public class Analyzor {
}
}
}
+ System.err.println("Lexicons are read.");
}
/**