diff options
Diffstat (limited to 'cli/cache/check.rs')
-rw-r--r-- | cli/cache/check.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cli/cache/check.rs b/cli/cache/check.rs index 6f3c41950..51adea9a1 100644 --- a/cli/cache/check.rs +++ b/cli/cache/check.rs @@ -17,6 +17,7 @@ pub struct TypeCheckCache(Option<Connection>); impl TypeCheckCache { pub fn new(db_file_path: &Path) -> Self { + log::debug!("Loading type check cache."); match Self::try_new(db_file_path) { Ok(cache) => cache, Err(err) => { |