summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2021-01-02 16:05:00 +0100
committerMatthias Beyer <mail@beyermatthias.de>2021-01-02 16:10:25 +0100
commit5769240727f9df1641d73dc0fa4f393dff1967e0 (patch)
tree4619fcbef8a470f0f01958baf9bb300404cb3475
parenta229957482903654c859660425d2bf4e1981275c (diff)
Remove "antikoerper" from source
Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
-rw-r--r--aklog.service2
-rw-r--r--src/config.rs2
-rw-r--r--src/main.rs2
3 files changed, 3 insertions, 3 deletions
diff --git a/aklog.service b/aklog.service
index c9ba5b2..897b1cd 100644
--- a/aklog.service
+++ b/aklog.service
@@ -1,5 +1,5 @@
[Unit]
-Description=Service to manage aklog-server, which serves antikoerper-logs to grafana
+Description=Service to manage aklog-server, which serves logs to grafana
[Service]
Type=simple
diff --git a/src/config.rs b/src/config.rs
index a786b9e..a947840 100644
--- a/src/config.rs
+++ b/src/config.rs
@@ -11,7 +11,7 @@ use error::*;
// structs for deserialization //
//------------------------------------//
-/// Holds data for one antikoerper Log-File.
+/// Holds data for one Log-File.
/// Used for deserialization only
#[derive(Clone, Debug, Deserialize)]
pub struct LogItemDeser {
diff --git a/src/main.rs b/src/main.rs
index 8f123dc..6b3c2d6 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -151,7 +151,7 @@ fn hash_map_iter(h : HashMap<&String, (&LogItem, Vec<(String, String)>)>, d_from
// open the current file for reading
let mut line_iter = BufReader::new(
File::open(file)
- .chain_err(|| format!("antikoerper log file could not be opened: {}", logitem.file()))?
+ .chain_err(|| format!("log file could not be opened: {}", logitem.file()))?
).lines();
// read the file line by line...