Re-enable sys:log

This commit is contained in:
Jeremy Soller
2024-04-10 10:38:46 -06:00
parent 3fc9103826
commit e4246d6704
+2 -2
View File
@@ -26,12 +26,12 @@ impl Log {
}
pub fn write(&mut self, buf: &[u8]) {
/*for &b in buf {
for &b in buf {
while self.data.len() + 1 >= self.size {
self.data.pop_front();
}
self.data.push_back(b);
}*/
}
}
}