aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe/src/downloader
diff options
context:
space:
mode:
Diffstat (limited to 'crates/shirabe/src/downloader')
-rw-r--r--crates/shirabe/src/downloader/file_downloader.rs9
1 files changed, 5 insertions, 4 deletions
diff --git a/crates/shirabe/src/downloader/file_downloader.rs b/crates/shirabe/src/downloader/file_downloader.rs
index cbf008c4..aaa3995a 100644
--- a/crates/shirabe/src/downloader/file_downloader.rs
+++ b/crates/shirabe/src/downloader/file_downloader.rs
@@ -126,10 +126,11 @@ impl FileDownloader {
if let Some(cache) = &this.cache
&& cache.borrow().gc_is_necessary()
{
- // PHP: writeError('Running cache garbage collection', true, io_interface::VERY_VERBOSE)
- this.io
- .borrow()
- .write_error("Running cache garbage collection");
+ this.io.borrow().write_error3(
+ "Running cache garbage collection",
+ true,
+ crate::io::io_interface::VERY_VERBOSE,
+ );
let ttl = this
.config
.borrow_mut()