aboutsummaryrefslogtreecommitdiff
path: root/azalea-auth/src/cache.rs
diff options
context:
space:
mode:
Diffstat (limited to 'azalea-auth/src/cache.rs')
-rwxr-xr-xazalea-auth/src/cache.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/azalea-auth/src/cache.rs b/azalea-auth/src/cache.rs
index 1e8aee10..85d25f93 100755
--- a/azalea-auth/src/cache.rs
+++ b/azalea-auth/src/cache.rs
@@ -82,13 +82,13 @@ async fn get_entire_cache(cache_file: &Path) -> Result<Vec<CachedAccount>, Cache
Ok(cache)
}
async fn set_entire_cache(cache_file: &Path, cache: Vec<CachedAccount>) -> Result<(), CacheError> {
- log::trace!("saving cache: {:?}", cache);
+ tracing::trace!("saving cache: {:?}", cache);
if !cache_file.exists() {
let cache_file_parent = cache_file
.parent()
.expect("Cache file is root directory and also doesn't exist.");
- log::debug!(
+ tracing::debug!(
"Making cache file parent directory at {}",
cache_file_parent.to_string_lossy()
);