diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2022-11-23 13:34:44 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-23 13:34:44 -0500 |
commit | beaa0d88679c96e643f411d04a4ce9f6d159eaeb (patch) | |
tree | 3eae69a47f984cd8c19860758feb969a74b26bb7 /cli/cache/node.rs | |
parent | cbf4fa143fe0e21647ca9518ec93c349199da8f4 (diff) |
chore: more debug logging and avoid allocating strings in ts logging when not debug (#16689)
Diffstat (limited to 'cli/cache/node.rs')
-rw-r--r-- | cli/cache/node.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cli/cache/node.rs b/cli/cache/node.rs index 62a8a8926..d84a25c34 100644 --- a/cli/cache/node.rs +++ b/cli/cache/node.rs @@ -142,6 +142,7 @@ impl NodeAnalysisCacheInner { db_file_path: Option<&Path>, version: String, ) -> Result<Self, AnyError> { + log::debug!("Opening node analysis cache."); let conn = match db_file_path { Some(path) => Connection::open(path)?, None => Connection::open_in_memory()?, |