aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe/src/io/console_io.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/shirabe/src/io/console_io.rs')
-rw-r--r--crates/shirabe/src/io/console_io.rs12
1 files changed, 6 insertions, 6 deletions
diff --git a/crates/shirabe/src/io/console_io.rs b/crates/shirabe/src/io/console_io.rs
index fc46832..e061401 100644
--- a/crates/shirabe/src/io/console_io.rs
+++ b/crates/shirabe/src/io/console_io.rs
@@ -693,16 +693,16 @@ impl IOInterfaceImmutable for ConsoleIO {
<Self as BaseIO>::get_authentication(self, repository_name)
}
- fn error(&self, _message: &str, _context: &[(&str, &str)]) {
- todo!()
+ fn error(&self, message: &str, context: &[(&str, &str)]) {
+ <Self as BaseIO>::error(self, message, context);
}
- fn warning(&self, _message: &str, _context: &[(&str, &str)]) {
- todo!()
+ fn warning(&self, message: &str, context: &[(&str, &str)]) {
+ <Self as BaseIO>::warning(self, message, context);
}
- fn debug(&self, _message: &str, _context: &[(&str, &str)]) {
- todo!()
+ fn debug(&self, message: &str, context: &[(&str, &str)]) {
+ <Self as BaseIO>::debug(self, message, context);
}
}