Skip to content

Commit

Permalink
log.rs: added comments
Browse files Browse the repository at this point in the history
  • Loading branch information
schoettner committed Jun 11, 2024
1 parent d63a52e commit a3dfab3
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions os/kernel/src/log.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
/* ╔═════════════════════════════════════════════════════════════════════════╗
║ Module: log ║
╟─────────────────────────────────────────────────────────────────────────╢
║ Descr.: Logger implementation. Support one or several output streams. ║
║ Messages are dumped on each output stream. ║
╟─────────────────────────────────────────────────────────────────────────╢
║ Author: Fabian Ruhland, HHU ║
╚═════════════════════════════════════════════════════════════════════════╝
*/
use crate::device::serial;
use crate::device::serial::ComPort;
use crate::device::serial::SerialPort;
Expand Down

0 comments on commit a3dfab3

Please sign in to comment.