File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -43,17 +43,17 @@ impl BgpAnalyser {
43
43
let mut seen = self . seen . write ( ) . unwrap ( ) ;
44
44
if let Some ( last_time) = seen. last_updated ( ) {
45
45
if ( last_time + Duration :: minutes ( BGP_RIS_REFRESH_MINUTES ) ) > Time :: now ( ) {
46
- debug ! ( "Will not check BGP Ris Dumps until the refresh interval has passed" ) ;
46
+ trace ! ( "Will not check BGP Ris Dumps until the refresh interval has passed" ) ;
47
47
return Ok ( false ) ; // no need to update yet
48
48
}
49
49
}
50
50
let announcements = loader. download_updates ( ) . await ?;
51
51
if seen. equivalent ( & announcements) {
52
- info ! ( "BGP Ris Dumps unchanged" ) ;
52
+ debug ! ( "BGP Ris Dumps unchanged" ) ;
53
53
Ok ( false )
54
54
} else {
55
55
info ! (
56
- "Found {} announcements based on BGP Ris Dumps" ,
56
+ "Updated announcements ({}) based on BGP Ris Dumps" ,
57
57
announcements. len( )
58
58
) ;
59
59
seen. update ( announcements) ;
You can’t perform that action at this time.
0 commit comments