summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSerguey Parkhomovsky <xindigo@gmail.com>2026-03-21 11:47:44 -0700
committerSerguey Parkhomovsky <xindigo@gmail.com>2026-03-21 11:47:44 -0700
commit7ea7f659c11ba3b014458cc1f8cced715c88bc97 (patch)
tree66f13ea5bd00dcac5ef6840bc70929b4b5209c25 /src
parent22292eccabcdf36129845e6fd03d0c5e2516c3be (diff)
Better TLS connector error message
Diffstat (limited to 'src')
-rw-r--r--src/main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs
index 433209c..722d050 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -160,7 +160,7 @@ async fn poll_bambu(
{
Ok(c) => c,
Err(e) => {
- error!(name, error = %e, "Failed to build TLS connector for Bambu printer");
+ error!(name, error = %e, "Failed to build TLS connector — this printer will not be polled");
return;
}
};