Is your feature request related to a problem? Please describe. txindex sync message will print more than exactly twice a minute because current_time and last_log_time are in seconds, it jitters by one second https://github.com/bitcoin/bitcoin/blob/1e8aa02ec5cc2819c67ef40a7573c4b23a4c11cc/src/index/base.cpp#L168
Describe the solution you'd like change '<' with '<=' makes the message appear twice exactly a minute, in https://github.com/bitcoin/bitcoin/blob/1e8aa02ec5cc2819c67ef40a7573c4b23a4c11cc/src/index/base.cpp#L168 for consistency, probably as well in https://github.com/bitcoin/bitcoin/blob/1e8aa02ec5cc2819c67ef40a7573c4b23a4c11cc/src/index/base.cpp#L174 (among others?) but I'm not interested in analyzing implications of changing that line 174
Describe alternatives you've considered I suppose there's a way to change this by using millisec resolution in these time variables.
Additional context thanks!