You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
in logging.cc:
maximum of file_length_ is 0xFFFFFFFF
when --max_log_size is larger than 4096 (0xFFFFFFFF >> 20)
line 1108 if (static_cast<int>(file_length_ >> 20) >= MaxLogSize() || PidHasChanged()) {
the first condition will never satisfied.
The text was updated successfully, but these errors were encountered:
in logging.cc:
maximum of file_length_ is 0xFFFFFFFF
when --max_log_size is larger than 4096 (0xFFFFFFFF >> 20)
line 1108
if (static_cast<int>(file_length_ >> 20) >= MaxLogSize() || PidHasChanged()) {
the first condition will never satisfied.
The text was updated successfully, but these errors were encountered: