e6198b1ba7eae1530f25ed995d9c13ad1b5391cd
[ccsdk/cds.git] / ms / blueprintsprocessor / application / src / test / kotlin / org / onap / ccsdk / cds / blueprintsprocessor / uat / utils / MarkedSlf4jNotifier.kt
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2019 Nordix Foundation.
4  * ================================================================================
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  *      http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  *
17  * SPDX-License-Identifier: Apache-2.0
18  * ============LICENSE_END=========================================================
19  */
20 package org.onap.ccsdk.cds.blueprintsprocessor.uat.utils
21
22 import com.github.tomakehurst.wiremock.common.Notifier
23 import org.slf4j.LoggerFactory
24 import org.slf4j.Marker
25
26 class MarkedSlf4jNotifier(private val marker: Marker) : Notifier {
27
28     override fun info(message: String) {
29         log.info(marker, message)
30     }
31
32     override fun error(message: String) {
33         log.error(marker, message)
34     }
35
36     override fun error(message: String, t: Throwable) {
37         log.error(marker, message, t)
38     }
39
40     companion object {
41         private val log = LoggerFactory.getLogger("uat.WireMock")
42     }
43 }