org.jitsi.utils.logging.InstanceLogger Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jitsi-utils Show documentation
Show all versions of jitsi-utils Show documentation
A set of basic utilities used in Jitsi projects
/*
* Copyright @ 2015 - Present 8x8, 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 org.jitsi.utils.logging;
import java.util.logging.*;
/**
* Implements a {@link org.jitsi.utils.logging.Logger}, which delegates logging to another
* {@link org.jitsi.utils.logging.Logger}, and allows it's level to be lowered independent of the
* delegate (by another {@link org.jitsi.utils.logging.Logger} instance or by a level configuration).
*
* @author Boris Grozev
*/
public class InstanceLogger
extends org.jitsi.utils.logging.Logger
{
/**
* The {@link org.jitsi.utils.logging.Logger} used for logging.
*/
private final Logger loggingDelegate;
/**
* The {@link org.jitsi.utils.logging.Logger} used for configuring the level. Messages are logged
* iff:
* 1. {@link #levelDelegate} is not set or allows it.
* 2. {@link #loggingDelegate} allows it.
* 3. {@link #level}, is not set or allows it.
*/
private final Logger levelDelegate;
/**
* The level configured for this instance.
*/
private Level level = null;
/**
* Initializes an {@link InstanceLogger} instance with the given delegate
* for logging and for getting the level.
*/
protected InstanceLogger(
org.jitsi.utils.logging.Logger loggingDelegate,
Logger levelDelegate)
{
this.loggingDelegate = loggingDelegate;
this.levelDelegate = levelDelegate;
}
/**
* {@inheritDoc}
*/
@Override
public void setLevel(Level level)
{
this.level = level;
}
/**
* {@inheritDoc}
*/
@Override
public Level getLevel()
{
return higher(
higher(level != null ? level : Level.ALL,
loggingDelegate.getLevel()),
levelDelegate != null ? levelDelegate.getLevel() : Level.ALL);
}
/**
* {@inheritDoc}
*/
@Override
boolean isLoggable(Level level)
{
Level loggerLevel = getLevel();
if (level == null || loggerLevel == Level.OFF)
{
return false;
}
return level.intValue() >= loggerLevel.intValue();
}
/**
* {@inheritDoc}
*/
@Override
public void log(Level level, Object msg)
{
if (isLoggable(level))
{
loggingDelegate.log(level, msg != null ? msg.toString() : "null");
}
}
/**
* {@inheritDoc}
*/
@Override
public void log(Level level, Object msg, Throwable thrown)
{
if (isLoggable(level))
{
loggingDelegate
.log(level, msg != null ? msg.toString() : "null", thrown);
}
}
/**
* @return the higher of two logging levels.
* e.g.: higher(Level.FINE, Level.WARNING) -> Level.WARNING
*/
private Level higher(Level a, Level b)
{
if (a.intValue() >= b.intValue())
return a;
return b;
}
}