summaryrefslogtreecommitdiffstats
path: root/src/log
diff options
context:
space:
mode:
Diffstat (limited to 'src/log')
-rw-r--r--src/log/item.rs10
-rw-r--r--src/log/mod.rs10
-rw-r--r--src/log/parser.rs10
-rw-r--r--src/log/sink.rs10
-rw-r--r--src/log/util.rs10
5 files changed, 50 insertions, 0 deletions
diff --git a/src/log/item.rs b/src/log/item.rs
index 139ca76..4236bb6 100644
--- a/src/log/item.rs
+++ b/src/log/item.rs
@@ -1,3 +1,13 @@
+//
+// Copyright (c) 2020-2021 science+computing ag and other contributors
+//
+// This program and the accompanying materials are made
+// available under the terms of the Eclipse Public License 2.0
+// which is available at https://www.eclipse.org/legal/epl-2.0/
+//
+// SPDX-License-Identifier: EPL-2.0
+//
+
use anyhow::Result;
#[derive(Debug, PartialEq, Eq, Hash)]
diff --git a/src/log/mod.rs b/src/log/mod.rs
index e3d8325..7f6923d 100644
--- a/src/log/mod.rs
+++ b/src/log/mod.rs
@@ -1,3 +1,13 @@
+//
+// Copyright (c) 2020-2021 science+computing ag and other contributors
+//
+// This program and the accompanying materials are made
+// available under the terms of the Eclipse Public License 2.0
+// which is available at https://www.eclipse.org/legal/epl-2.0/
+//
+// SPDX-License-Identifier: EPL-2.0
+//
+
mod parser;
pub use parser::*;
diff --git a/src/log/parser.rs b/src/log/parser.rs
index 0ce3ef8..7acc203 100644
--- a/src/log/parser.rs
+++ b/src/log/parser.rs
@@ -1,3 +1,13 @@
+//
+// Copyright (c) 2020-2021 science+computing ag and other contributors
+//
+// This program and the accompanying materials are made
+// available under the terms of the Eclipse Public License 2.0
+// which is available at https://www.eclipse.org/legal/epl-2.0/
+//
+// SPDX-License-Identifier: EPL-2.0
+//
+
use std::result::Result as RResult;
use std::str::FromStr;
diff --git a/src/log/sink.rs b/src/log/sink.rs
index fdc0c67..7308f8d 100644
--- a/src/log/sink.rs
+++ b/src/log/sink.rs
@@ -1,3 +1,13 @@
+//
+// Copyright (c) 2020-2021 science+computing ag and other contributors
+//
+// This program and the accompanying materials are made
+// available under the terms of the Eclipse Public License 2.0
+// which is available at https://www.eclipse.org/legal/epl-2.0/
+//
+// SPDX-License-Identifier: EPL-2.0
+//
+
use anyhow::Result;
use crate::log::LogItem;
diff --git a/src/log/util.rs b/src/log/util.rs
index 675a4c4..783ee47 100644
--- a/src/log/util.rs
+++ b/src/log/util.rs
@@ -1,3 +1,13 @@
+//
+// Copyright (c) 2020-2021 science+computing ag and other contributors
+//
+// This program and the accompanying materials are made
+// available under the terms of the Eclipse Public License 2.0
+// which is available at https://www.eclipse.org/legal/epl-2.0/
+//
+// SPDX-License-Identifier: EPL-2.0
+//
+
use shiplift::tty::TtyChunk;
pub enum TtyChunkBuf {