All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.juli.logging.ch.qos.logback.core.property.CanonicalHostNamePropertyDefiner Maven / Gradle / Ivy

There is a newer version: 8.5.100.SP1
Show newest version
package org.apache.juli.logging.ch.qos.logback.core.property;

import org.apache.juli.logging.ch.qos.logback.core.PropertyDefinerBase;
import org.apache.juli.logging.ch.qos.logback.core.util.NetworkAddressUtil;

public class CanonicalHostNamePropertyDefiner extends PropertyDefinerBase {

    @Override
    public String getPropertyValue() {
        return new NetworkAddressUtil(getContext()).safelyGetCanonicalLocalHostName();
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy