File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -697,7 +697,7 @@ func (s *Database) persistIndexHeader() error {
697
697
defer s .headerWriteOccupied .Store (false )
698
698
return s .persistIndexHeaderInternal ()
699
699
}
700
- s .log .Warn ("Skipping persistIndexHeader due to concurrent header write" )
700
+ s .log .Info ("Skipping persistIndexHeader due to concurrent header write" )
701
701
return nil
702
702
}
703
703
@@ -1043,14 +1043,14 @@ func (s *Database) loadOrInitializeHeader() error {
1043
1043
1044
1044
// log a warning if the config does not match the index header
1045
1045
if s .config .MinimumHeight != s .header .MinHeight {
1046
- s .log .Warn (
1046
+ s .log .Info (
1047
1047
"MinimumHeight in blockdb config does not match the index header. The MinimumHeight in the index header will be used." ,
1048
1048
zap .Uint64 ("configMinimumHeight" , s .config .MinimumHeight ),
1049
1049
zap .Uint64 ("headerMinimumHeight" , s .header .MinHeight ),
1050
1050
)
1051
1051
}
1052
1052
if s .config .MaxDataFileSize != s .header .MaxDataFileSize {
1053
- s .log .Warn (
1053
+ s .log .Info (
1054
1054
"MaxDataFileSize in blockdb config does not match the index header. The MaxDataFileSize in the index header will be used." ,
1055
1055
zap .Uint64 ("configMaxDataFileSize" , s .config .MaxDataFileSize ),
1056
1056
zap .Uint64 ("headerMaxDataFileSize" , s .header .MaxDataFileSize ),
You can’t perform that action at this time.
0 commit comments