[leveldb_proto] Disabled warning log when database file not found
leveldb_database.cc used to log all initialization errors, including a case we considered normal. When a database file is missing, and the client set create_if_missing = false then this means the client expected the file to be missing. Our DB code attempts to open the shared database. As no client has migrated to it then it's fine if it doesn't exist. However, as this code get executed when BrowserContext starts then it spams the logs on BrowserTests. This CL removes logging for this specific case, as it is an expected state which doesn't have to be logged. Change-Id: I51a986b43b13c441384a7cf67df6565a64881941 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1670361 Commit-Queue: Salvador Guerrero <salg@google.com> Auto-Submit: Salvador Guerrero <salg@google.com> Reviewed-by:Tommy Nyquist <nyquist@chromium.org> Cr-Commit-Position: refs/heads/master@{#673411}
Showing
Please register or sign in to comment