summaryrefslogtreecommitdiffstats
path: root/sandbox/slaws/logging-copy/src/main/java/patha
diff options
context:
space:
mode:
Diffstat (limited to 'sandbox/slaws/logging-copy/src/main/java/patha')
-rw-r--r--sandbox/slaws/logging-copy/src/main/java/patha/Messages.properties21
-rw-r--r--sandbox/slaws/logging-copy/src/main/java/patha/SomeTuscanyClassA.java35
2 files changed, 0 insertions, 56 deletions
diff --git a/sandbox/slaws/logging-copy/src/main/java/patha/Messages.properties b/sandbox/slaws/logging-copy/src/main/java/patha/Messages.properties
deleted file mode 100644
index 857c767484..0000000000
--- a/sandbox/slaws/logging-copy/src/main/java/patha/Messages.properties
+++ /dev/null
@@ -1,21 +0,0 @@
-#
-#
-# Licensed to the Apache Software Foundation (ASF) under one
-# or more contributor license agreements. See the NOTICE file
-# distributed with this work for additional information
-# regarding copyright ownership. The ASF licenses this file
-# to you under the Apache License, Version 2.0 (the
-# "License"); you may not use this file except in compliance
-# with the License. You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing,
-# software distributed under the License is distributed on an
-# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-# KIND, either express or implied. See the License for the
-# specific language governing permissions and limitations
-# under the License.
-#
-#
-TEST_MESSAGE = This is a test message with numbers {0}, {1}, {2}
diff --git a/sandbox/slaws/logging-copy/src/main/java/patha/SomeTuscanyClassA.java b/sandbox/slaws/logging-copy/src/main/java/patha/SomeTuscanyClassA.java
deleted file mode 100644
index ad29675074..0000000000
--- a/sandbox/slaws/logging-copy/src/main/java/patha/SomeTuscanyClassA.java
+++ /dev/null
@@ -1,35 +0,0 @@
-package patha;
-
-import java.util.logging.Level;
-import java.util.logging.Logger;
-
-import org.apache.cxf.common.logging.LogUtils;
-
-public class SomeTuscanyClassA {
-
- private static final Logger Log = LogUtils.getL7dLogger(SomeTuscanyClassA.class);
-
- public SomeTuscanyClassA() {
-
-
- Integer params[] = {8, 9, 4};
-
-
- LogUtils.log(Log,
- Level.INFO,
- "TEST_MESSAGE",
- null,
- (Object[])params);
-
- Exception ex = new IllegalStateException("TEST_MESSAGE");
-
- LogUtils.log(Log,
- Level.INFO,
- "TEST_MESSAGE",
- ex,
- (Object[])params);
-
-
- }
-
-}