summaryrefslogtreecommitdiff
path: root/cli/cache
diff options
context:
space:
mode:
Diffstat (limited to 'cli/cache')
-rw-r--r--cli/cache/http_cache.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/cli/cache/http_cache.rs b/cli/cache/http_cache.rs
index 2e784765e..b10c59756 100644
--- a/cli/cache/http_cache.rs
+++ b/cli/cache/http_cache.rs
@@ -11,7 +11,6 @@ use deno_core::serde::Deserialize;
use deno_core::serde::Serialize;
use deno_core::serde_json;
use deno_core::url::Url;
-use log::error;
use std::fs;
use std::fs::File;
use std::io;
@@ -42,7 +41,7 @@ fn base_url_to_filename(url: &Url) -> Option<PathBuf> {
}
"data" | "blob" => (),
scheme => {
- error!("Don't know how to create cache name for scheme: {}", scheme);
+ log::debug!("Don't know how to create cache name for scheme: {}", scheme);
return None;
}
};