src/main/core-api/java/com/mysql/cj/log/Jdk14Logger.java [94:229]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    @Override
    public void logDebug(Object message) {
        logInternal(DEBUG, message, null);
    }

    /**
     * Logs the given message and Throwable at the 'debug' level.
     *
     * @param message
     *            the message to log
     * @param exception
     *            the throwable to log (may be null)
     */
    @Override
    public void logDebug(Object message, Throwable exception) {
        logInternal(DEBUG, message, exception);
    }

    /**
     * Logs the given message instance using the 'error' level
     *
     * @param message
     *            the message to log
     */
    @Override
    public void logError(Object message) {
        logInternal(ERROR, message, null);
    }

    /**
     * Logs the given message and Throwable at the 'error' level.
     *
     * @param message
     *            the message to log
     * @param exception
     *            the throwable to log (may be null)
     */
    @Override
    public void logError(Object message, Throwable exception) {
        logInternal(ERROR, message, exception);
    }

    /**
     * Logs the given message instance using the 'fatal' level
     *
     * @param message
     *            the message to log
     */
    @Override
    public void logFatal(Object message) {
        logInternal(FATAL, message, null);
    }

    /**
     * Logs the given message and Throwable at the 'fatal' level.
     *
     * @param message
     *            the message to log
     * @param exception
     *            the throwable to log (may be null)
     */
    @Override
    public void logFatal(Object message, Throwable exception) {
        logInternal(FATAL, message, exception);
    }

    /**
     * Logs the given message instance using the 'info' level
     *
     * @param message
     *            the message to log
     */
    @Override
    public void logInfo(Object message) {
        logInternal(INFO, message, null);
    }

    /**
     * Logs the given message and Throwable at the 'info' level.
     *
     * @param message
     *            the message to log
     * @param exception
     *            the throwable to log (may be null)
     */
    @Override
    public void logInfo(Object message, Throwable exception) {
        logInternal(INFO, message, exception);
    }

    /**
     * Logs the given message instance using the 'trace' level
     *
     * @param message
     *            the message to log
     */
    @Override
    public void logTrace(Object message) {
        logInternal(TRACE, message, null);
    }

    /**
     * Logs the given message and Throwable at the 'trace' level.
     *
     * @param message
     *            the message to log
     * @param exception
     *            the throwable to log (may be null)
     */
    @Override
    public void logTrace(Object message, Throwable exception) {
        logInternal(TRACE, message, exception);
    }

    /**
     * Logs the given message instance using the 'warn' level
     *
     * @param message
     *            the message to log
     */
    @Override
    public void logWarn(Object message) {
        logInternal(WARN, message, null);
    }

    /**
     * Logs the given message and Throwable at the 'warn' level.
     *
     * @param message
     *            the message to log
     * @param exception
     *            the throwable to log (may be null)
     */
    @Override
    public void logWarn(Object message, Throwable exception) {
        logInternal(WARN, message, exception);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/core-api/java/com/mysql/cj/log/StandardLogger.java [103:238]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    @Override
    public void logDebug(Object message) {
        logInternal(DEBUG, message, null);
    }

    /**
     * Logs the given message and Throwable at the 'debug' level.
     *
     * @param message
     *            the message to log
     * @param exception
     *            the throwable to log (may be null)
     */
    @Override
    public void logDebug(Object message, Throwable exception) {
        logInternal(DEBUG, message, exception);
    }

    /**
     * Logs the given message instance using the 'error' level
     *
     * @param message
     *            the message to log
     */
    @Override
    public void logError(Object message) {
        logInternal(ERROR, message, null);
    }

    /**
     * Logs the given message and Throwable at the 'error' level.
     *
     * @param message
     *            the message to log
     * @param exception
     *            the throwable to log (may be null)
     */
    @Override
    public void logError(Object message, Throwable exception) {
        logInternal(ERROR, message, exception);
    }

    /**
     * Logs the given message instance using the 'fatal' level
     *
     * @param message
     *            the message to log
     */
    @Override
    public void logFatal(Object message) {
        logInternal(FATAL, message, null);
    }

    /**
     * Logs the given message and Throwable at the 'fatal' level.
     *
     * @param message
     *            the message to log
     * @param exception
     *            the throwable to log (may be null)
     */
    @Override
    public void logFatal(Object message, Throwable exception) {
        logInternal(FATAL, message, exception);
    }

    /**
     * Logs the given message instance using the 'info' level
     *
     * @param message
     *            the message to log
     */
    @Override
    public void logInfo(Object message) {
        logInternal(INFO, message, null);
    }

    /**
     * Logs the given message and Throwable at the 'info' level.
     *
     * @param message
     *            the message to log
     * @param exception
     *            the throwable to log (may be null)
     */
    @Override
    public void logInfo(Object message, Throwable exception) {
        logInternal(INFO, message, exception);
    }

    /**
     * Logs the given message instance using the 'trace' level
     *
     * @param message
     *            the message to log
     */
    @Override
    public void logTrace(Object message) {
        logInternal(TRACE, message, null);
    }

    /**
     * Logs the given message and Throwable at the 'trace' level.
     *
     * @param message
     *            the message to log
     * @param exception
     *            the throwable to log (may be null)
     */
    @Override
    public void logTrace(Object message, Throwable exception) {
        logInternal(TRACE, message, exception);
    }

    /**
     * Logs the given message instance using the 'warn' level
     *
     * @param message
     *            the message to log
     */
    @Override
    public void logWarn(Object message) {
        logInternal(WARN, message, null);
    }

    /**
     * Logs the given message and Throwable at the 'warn' level.
     *
     * @param message
     *            the message to log
     * @param exception
     *            the throwable to log (may be null)
     */
    @Override
    public void logWarn(Object message, Throwable exception) {
        logInternal(WARN, message, exception);
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



