@@ -54,7 +54,7 @@ public static WordDictionary getInstance() {
54
54
*/
55
55
public void init (Path configFile ) {
56
56
String abspath = configFile .toAbsolutePath ().toString ();
57
- System . out . println ("initialize user dictionary:" + abspath );
57
+ Log . debug ("initialize user dictionary:" + abspath );
58
58
synchronized (WordDictionary .class ) {
59
59
if (loadedPath .contains (abspath ))
60
60
return ;
@@ -63,14 +63,12 @@ public void init(Path configFile) {
63
63
try {
64
64
stream = Files .newDirectoryStream (configFile , String .format (Locale .getDefault (), "*%s" , USER_DICT_SUFFIX ));
65
65
for (Path path : stream ){
66
- System . err . println (String .format (Locale .getDefault (), "loading dict %s" , path .toString ()));
66
+ Log . error (String .format (Locale .getDefault (), "loading dict %s" , path .toString ()));
67
67
singleton .loadUserDict (path );
68
68
}
69
69
loadedPath .add (abspath );
70
70
} catch (IOException e ) {
71
- // TODO Auto-generated catch block
72
- // e.printStackTrace();
73
- System .err .println (String .format (Locale .getDefault (), "%s: load user dict failure!" , configFile .toString ()));
71
+ Log .error (String .format (Locale .getDefault (), "%s: load user dict failure!" , configFile .toString ()));
74
72
}
75
73
}
76
74
}
@@ -80,13 +78,11 @@ public void init(String[] paths) {
80
78
for (String path : paths ){
81
79
if (!loadedPath .contains (path )) {
82
80
try {
83
- System . out . println ("initialize user dictionary: " + path );
81
+ Log . debug ("initialize user dictionary: " + path );
84
82
singleton .loadUserDict (path );
85
83
loadedPath .add (path );
86
84
} catch (Exception e ) {
87
- // TODO Auto-generated catch block
88
- e .printStackTrace ();
89
- System .err .println (String .format (Locale .getDefault (), "%s: load user dict failure!" , path ));
85
+ Log .error (String .format (Locale .getDefault (), "%s: load user dict failure!" , path ));
90
86
}
91
87
}
92
88
}
@@ -127,19 +123,19 @@ public void loadDict() {
127
123
entry .setValue ((Math .log (entry .getValue () / total )));
128
124
minFreq = Math .min (entry .getValue (), minFreq );
129
125
}
130
- System . out . println (String .format (Locale .getDefault (), "main dict load finished, time elapsed %d ms" ,
131
- System .currentTimeMillis () - s ));
126
+ Log . debug (String .format (Locale .getDefault (), "main dict load finished, time elapsed %d ms" ,
127
+ System .currentTimeMillis () - s ));
132
128
}
133
129
catch (IOException e ) {
134
- System . err . println (String .format (Locale .getDefault (), "%s load failure!" , MAIN_DICT ));
130
+ Log . error (String .format (Locale .getDefault (), "%s load failure!" , MAIN_DICT ));
135
131
}
136
132
finally {
137
133
try {
138
134
if (null != is )
139
135
is .close ();
140
136
}
141
137
catch (IOException e ) {
142
- System . err . println (String .format (Locale .getDefault (), "%s close failure!" , MAIN_DICT ));
138
+ Log . error (String .format (Locale .getDefault (), "%s close failure!" , MAIN_DICT ));
143
139
}
144
140
}
145
141
}
@@ -187,11 +183,11 @@ public void loadUserDict(Path userDict, Charset charset) {
187
183
freqs .put (word , Math .log (freq / total ));
188
184
count ++;
189
185
}
190
- System . out . println (String .format (Locale .getDefault (), "user dict %s load finished, tot words:%d, time elapsed:%dms" , userDict .toString (), count , System .currentTimeMillis () - s ));
186
+ Log . debug (String .format (Locale .getDefault (), "user dict %s load finished, tot words:%d, time elapsed:%dms" , userDict .toString (), count , System .currentTimeMillis () - s ));
191
187
br .close ();
192
188
}
193
189
catch (IOException e ) {
194
- System . err . println (String .format (Locale .getDefault (), "%s: load user dict failure!" , userDict .toString ()));
190
+ Log . error (String .format (Locale .getDefault (), "%s: load user dict failure!" , userDict .toString ()));
195
191
}
196
192
}
197
193
@@ -220,11 +216,11 @@ public void loadUserDict(String userDictPath, Charset charset) {
220
216
freqs .put (word , Math .log (freq / total ));
221
217
count ++;
222
218
}
223
- System . out . println (String .format (Locale .getDefault (), "user dict %s load finished, tot words:%d, time elapsed:%dms" , userDictPath , count , System .currentTimeMillis () - s ));
219
+ Log . debug (String .format (Locale .getDefault (), "user dict %s load finished, tot words:%d, time elapsed:%dms" , userDictPath , count , System .currentTimeMillis () - s ));
224
220
br .close ();
225
221
}
226
222
catch (IOException e ) {
227
- System . err . println (String .format (Locale .getDefault (), "%s: load user dict failure!" , userDictPath ));
223
+ Log . error (String .format (Locale .getDefault (), "%s: load user dict failure!" , userDictPath ));
228
224
}
229
225
}
230
226
0 commit comments