Sha256: 1b552cfadb4fa36e5d393a5fb71209143da618dbfb59646d6f254b58c58511b0
Contents?: true
Size: 1.3 KB
Versions: 6
Compression:
Stored size: 1.3 KB
Contents
/* * Copyright 2008-present MongoDB, Inc. * * Licensed 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. * */ package com.mongodb.crypt.capi; /** * This class is not part of the public API. */ public final class Loggers { private static final String NAME = "org.mongodb.driver.crypt"; private static final boolean USE_SLF4J = shouldUseSLF4J(); /** * @return the logger */ public static Logger getLogger() { if (USE_SLF4J) { return new SLF4JLogger(NAME); } else { return new JULLogger(NAME); } } private Loggers() { } private static boolean shouldUseSLF4J() { try { Class.forName("org.slf4j.Logger"); return true; } catch (ClassNotFoundException e) { return false; } } }
Version data entries
6 entries across 6 versions & 1 rubygems