src/main/kotlin/de/uapcore/lightpit/Logging.kt

Thu, 13 May 2021 18:01:56 +0200

author
Mike Becker <universe@uap-core.de>
date
Thu, 13 May 2021 18:01:56 +0200
changeset 197
0a2ad22ac656
parent 180
009700915269
permissions
-rw-r--r--

removes useless guard

universe@151 1 /*
universe@180 2 * Copyright 2021 Mike Becker. All rights reserved.
universe@151 3 *
universe@151 4 * Redistribution and use in source and binary forms, with or without
universe@151 5 * modification, are permitted provided that the following conditions are met:
universe@151 6 *
universe@151 7 * 1. Redistributions of source code must retain the above copyright
universe@151 8 * notice, this list of conditions and the following disclaimer.
universe@151 9 *
universe@151 10 * 2. Redistributions in binary form must reproduce the above copyright
universe@151 11 * notice, this list of conditions and the following disclaimer in the
universe@151 12 * documentation and/or other materials provided with the distribution.
universe@151 13 *
universe@151 14 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
universe@151 15 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
universe@151 16 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
universe@151 17 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
universe@151 18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
universe@151 19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
universe@151 20 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
universe@151 21 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
universe@151 22 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
universe@151 23 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
universe@151 24 */
universe@151 25
universe@151 26 package de.uapcore.lightpit
universe@151 27
universe@151 28 import org.slf4j.Logger
universe@151 29 import org.slf4j.LoggerFactory
universe@151 30
universe@151 31 interface LoggingTrait
universe@167 32
universe@167 33 inline fun <reified T : LoggingTrait> T.logger(): Logger = LoggerFactory.getLogger(T::class.java)

mercurial