aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorAlex Auvolat <alex@adnab.me>2020-12-04 14:06:06 +0100
committerAlex Auvolat <alex@adnab.me>2020-12-04 14:06:06 +0100
commit0b041c77f4167fcb0d2d8445b736757af7b8208d (patch)
treead62376f5dad1b0605e46874effe2c2673b40780 /examples
parentb63179c699e0569d45826bccb4b9f2f1bc53c30e (diff)
downloadnetapp-0b041c77f4167fcb0d2d8445b736757af7b8208d.tar.gz
netapp-0b041c77f4167fcb0d2d8445b736757af7b8208d.zip
more logging
Diffstat (limited to 'examples')
-rw-r--r--examples/basalt.rs3
-rw-r--r--examples/fullmesh.rs3
2 files changed, 4 insertions, 2 deletions
diff --git a/examples/basalt.rs b/examples/basalt.rs
index 141069a..ea1ea7d 100644
--- a/examples/basalt.rs
+++ b/examples/basalt.rs
@@ -53,8 +53,9 @@ async fn main() {
.parse_env("RUST_LOG")
.format(|buf, record| {
writeln!(buf,
- "{} {} {}",
+ "{} {} {} {}",
chrono::Local::now().format("%s%.6f"),
+ record.module_path().unwrap_or("_"),
record.level(),
record.args()
)
diff --git a/examples/fullmesh.rs b/examples/fullmesh.rs
index a61ab3d..a24d343 100644
--- a/examples/fullmesh.rs
+++ b/examples/fullmesh.rs
@@ -32,8 +32,9 @@ async fn main() {
.parse_env("RUST_LOG")
.format(|buf, record| {
writeln!(buf,
- "{} {} {}",
+ "{} {} {} {}",
chrono::Local::now().format("%s%.6f"),
+ record.module_path().unwrap_or("_"),
record.level(),
record.args()
)