summaryrefslogtreecommitdiffstats
path: root/eelf-logging
diff options
context:
space:
mode:
Diffstat (limited to 'eelf-logging')
-rw-r--r--eelf-logging/pom.xml3
-rw-r--r--eelf-logging/src/main/java/org/openecomp/cl/eelf/AaiLoggerAdapter.java3
-rw-r--r--eelf-logging/src/main/java/org/openecomp/cl/eelf/AuditLogLine.java3
-rw-r--r--eelf-logging/src/main/java/org/openecomp/cl/eelf/ErrorLogLine.java3
-rw-r--r--eelf-logging/src/main/java/org/openecomp/cl/eelf/LogMessageEnum.java3
-rw-r--r--eelf-logging/src/main/java/org/openecomp/cl/eelf/LoggerFactory.java3
-rw-r--r--eelf-logging/src/main/java/org/openecomp/cl/eelf/MetricsLogLine.java3
-rw-r--r--eelf-logging/src/test/java/org/openecomp/cl/eelf/AAILoggerAdapterTest.java3
-rw-r--r--eelf-logging/src/test/java/org/openecomp/cl/eelf/LoggerFactoryTest.java3
-rw-r--r--eelf-logging/src/test/java/org/openecomp/cl/eelf/UnitTestMsgs.java3
-rw-r--r--eelf-logging/src/test/resources/logging/UnitTestMsgs.properties3
11 files changed, 22 insertions, 11 deletions
diff --git a/eelf-logging/pom.xml b/eelf-logging/pom.xml
index 74e8fb2..70b5624 100644
--- a/eelf-logging/pom.xml
+++ b/eelf-logging/pom.xml
@@ -2,7 +2,8 @@
============LICENSE_START=======================================================
Common Logging Library
================================================================================
- Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
+ Copyright (C) 2017 AT&T Intellectual Property. All rights
+ reserved.
================================================================================
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
diff --git a/eelf-logging/src/main/java/org/openecomp/cl/eelf/AaiLoggerAdapter.java b/eelf-logging/src/main/java/org/openecomp/cl/eelf/AaiLoggerAdapter.java
index 0f05532..f573ab4 100644
--- a/eelf-logging/src/main/java/org/openecomp/cl/eelf/AaiLoggerAdapter.java
+++ b/eelf-logging/src/main/java/org/openecomp/cl/eelf/AaiLoggerAdapter.java
@@ -2,7 +2,8 @@
* ============LICENSE_START=======================================================
* Common Logging Library
* ================================================================================
- * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
+ * Copyright (C) 2017 AT&T Intellectual Property. All rights
+ * reserved.
* ================================================================================
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/eelf-logging/src/main/java/org/openecomp/cl/eelf/AuditLogLine.java b/eelf-logging/src/main/java/org/openecomp/cl/eelf/AuditLogLine.java
index 457da14..b01437d 100644
--- a/eelf-logging/src/main/java/org/openecomp/cl/eelf/AuditLogLine.java
+++ b/eelf-logging/src/main/java/org/openecomp/cl/eelf/AuditLogLine.java
@@ -2,7 +2,8 @@
* ============LICENSE_START=======================================================
* Common Logging Library
* ================================================================================
- * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
+ * Copyright (C) 2017 AT&T Intellectual Property. All rights
+ * reserved.
* ================================================================================
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/eelf-logging/src/main/java/org/openecomp/cl/eelf/ErrorLogLine.java b/eelf-logging/src/main/java/org/openecomp/cl/eelf/ErrorLogLine.java
index 25c2fa3..ba26dca 100644
--- a/eelf-logging/src/main/java/org/openecomp/cl/eelf/ErrorLogLine.java
+++ b/eelf-logging/src/main/java/org/openecomp/cl/eelf/ErrorLogLine.java
@@ -2,7 +2,8 @@
* ============LICENSE_START=======================================================
* Common Logging Library
* ================================================================================
- * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
+ * Copyright (C) 2017 AT&T Intellectual Property. All rights
+ * reserved.
* ================================================================================
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/eelf-logging/src/main/java/org/openecomp/cl/eelf/LogMessageEnum.java b/eelf-logging/src/main/java/org/openecomp/cl/eelf/LogMessageEnum.java
index dc83763..7d35c6c 100644
--- a/eelf-logging/src/main/java/org/openecomp/cl/eelf/LogMessageEnum.java
+++ b/eelf-logging/src/main/java/org/openecomp/cl/eelf/LogMessageEnum.java
@@ -2,7 +2,8 @@
* ============LICENSE_START=======================================================
* Common Logging Library
* ================================================================================
- * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
+ * Copyright (C) 2017 AT&T Intellectual Property. All rights
+ * reserved.
* ================================================================================
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/eelf-logging/src/main/java/org/openecomp/cl/eelf/LoggerFactory.java b/eelf-logging/src/main/java/org/openecomp/cl/eelf/LoggerFactory.java
index c0ff5b0..d695238 100644
--- a/eelf-logging/src/main/java/org/openecomp/cl/eelf/LoggerFactory.java
+++ b/eelf-logging/src/main/java/org/openecomp/cl/eelf/LoggerFactory.java
@@ -2,7 +2,8 @@
* ============LICENSE_START=======================================================
* Common Logging Library
* ================================================================================
- * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
+ * Copyright (C) 2017 AT&T Intellectual Property. All rights
+ * reserved.
* ================================================================================
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/eelf-logging/src/main/java/org/openecomp/cl/eelf/MetricsLogLine.java b/eelf-logging/src/main/java/org/openecomp/cl/eelf/MetricsLogLine.java
index fb5e213..0ed6b91 100644
--- a/eelf-logging/src/main/java/org/openecomp/cl/eelf/MetricsLogLine.java
+++ b/eelf-logging/src/main/java/org/openecomp/cl/eelf/MetricsLogLine.java
@@ -2,7 +2,8 @@
* ============LICENSE_START=======================================================
* Common Logging Library
* ================================================================================
- * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
+ * Copyright (C) 2017 AT&T Intellectual Property. All rights
+ * reserved.
* ================================================================================
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/eelf-logging/src/test/java/org/openecomp/cl/eelf/AAILoggerAdapterTest.java b/eelf-logging/src/test/java/org/openecomp/cl/eelf/AAILoggerAdapterTest.java
index 24dab76..0992d5f 100644
--- a/eelf-logging/src/test/java/org/openecomp/cl/eelf/AAILoggerAdapterTest.java
+++ b/eelf-logging/src/test/java/org/openecomp/cl/eelf/AAILoggerAdapterTest.java
@@ -2,7 +2,8 @@
* ============LICENSE_START=======================================================
* Common Logging Library
* ================================================================================
- * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
+ * Copyright (C) 2017 AT&T Intellectual Property. All rights
+ * reserved.
* ================================================================================
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/eelf-logging/src/test/java/org/openecomp/cl/eelf/LoggerFactoryTest.java b/eelf-logging/src/test/java/org/openecomp/cl/eelf/LoggerFactoryTest.java
index 5e475aa..0b61f4e 100644
--- a/eelf-logging/src/test/java/org/openecomp/cl/eelf/LoggerFactoryTest.java
+++ b/eelf-logging/src/test/java/org/openecomp/cl/eelf/LoggerFactoryTest.java
@@ -2,7 +2,8 @@
* ============LICENSE_START=======================================================
* Common Logging Library
* ================================================================================
- * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
+ * Copyright (C) 2017 AT&T Intellectual Property. All rights
+ * reserved.
* ================================================================================
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/eelf-logging/src/test/java/org/openecomp/cl/eelf/UnitTestMsgs.java b/eelf-logging/src/test/java/org/openecomp/cl/eelf/UnitTestMsgs.java
index 0b4eb5e..58202ba 100644
--- a/eelf-logging/src/test/java/org/openecomp/cl/eelf/UnitTestMsgs.java
+++ b/eelf-logging/src/test/java/org/openecomp/cl/eelf/UnitTestMsgs.java
@@ -2,7 +2,8 @@
* ============LICENSE_START=======================================================
* Common Logging Library
* ================================================================================
- * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
+ * Copyright (C) 2017 AT&T Intellectual Property. All rights
+ * reserved.
* ================================================================================
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
diff --git a/eelf-logging/src/test/resources/logging/UnitTestMsgs.properties b/eelf-logging/src/test/resources/logging/UnitTestMsgs.properties
index 77f5261..6abed9f 100644
--- a/eelf-logging/src/test/resources/logging/UnitTestMsgs.properties
+++ b/eelf-logging/src/test/resources/logging/UnitTestMsgs.properties
@@ -2,7 +2,8 @@
# ============LICENSE_START=======================================================
# Common Logging Library
# ================================================================================
-# Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
+# Copyright (C) 2017 AT&T Intellectual Property. All rights
+# reserved.
# ================================================================================
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.