File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -199,20 +199,20 @@ public void PropertyChange(PropertyChangeEvent evt)
199
199
else if ( R . Strings . PropertyProgress . Equals ( evt . PropertyName ) )
200
200
{
201
201
int progress = ( int ) evt . NewValue ;
202
- LOG . InfoFormat ( "Progress: {0}%" , progress ) ;
202
+ LOG . DebugFormat ( "Progress: {0}%" , progress ) ;
203
203
controller . View . GetMain ( ) . SetProgress ( progress ) ;
204
204
}
205
205
else if ( R . Strings . PropertyVisits . Equals ( evt . PropertyName ) )
206
206
{
207
207
FileVisit visit = ( FileVisit ) evt . NewValue ;
208
- LOG . InfoFormat ( "Progress: {0}% - Visit: {1}" , visit . Progress , visit . File . Name ) ;
208
+ LOG . DebugFormat ( "Progress: {0}% - Visit: {1}" , visit . Progress , visit . File . Name ) ;
209
209
controller . View . GetMain ( ) . SetProgress ( visit . Progress ) ;
210
210
controller . View . GetMain ( ) . SetAction ( visit ) ;
211
211
}
212
212
else if ( R . Strings . PropertyBean . Equals ( evt . PropertyName ) )
213
213
{
214
214
FileBean update = ( FileBean ) evt . NewValue ;
215
- LOG . InfoFormat ( "FileBean: {0} {1} {2} {3} {4}" ,
215
+ LOG . DebugFormat ( "FileBean: {0} {1} {2} {3} {4}" ,
216
216
update . Path . Name ,
217
217
update . Creation . ToString ( ) ,
218
218
update . Modified . ToString ( ) ,
Original file line number Diff line number Diff line change 19
19
20
20
<!-- Set root logger level to DEBUG and add appenders -->
21
21
<root >
22
- <level value =" DEBUG " />
22
+ <level value =" INFO " />
23
23
<appender-ref ref =" OutputDebugAppender" />
24
24
<!-- appender-ref ref="RollingFile" / -->
25
25
</root >
26
26
27
27
<!-- Print only messages of level WARN or above in the package Wreck -->
28
28
<logger name =" Wreck" >
29
- <level value =" DEBUG " />
29
+ <level value =" INFO " />
30
30
</logger >
31
31
</log4net >
You can’t perform that action at this time.
0 commit comments