Package org.gudy.azureus2.core3.download.impl

Source Code of org.gudy.azureus2.core3.download.impl.DownloadManagerMoveHandlerUtils

/*
* Created on 26 May 2008
* Created by Allan Crooks
* Copyright (C) 2007 Aelitis, All Rights Reserved.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
* GNU General Public License for more details.
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
*
* AELITIS, SAS au capital de 46,603.30 euros
* 8 Allee Lenotre, La Grille Royale, 78600 Le Mesnil le Roi, France.
*/
package org.gudy.azureus2.core3.download.impl;

import org.gudy.azureus2.core3.download.DownloadManager;
import org.gudy.azureus2.core3.logging.LogEvent;
import org.gudy.azureus2.core3.logging.LogIDs;
import org.gudy.azureus2.core3.logging.LogRelation;
import org.gudy.azureus2.core3.logging.Logger;

/**
* @author Allan Crooks
*
*/
public class DownloadManagerMoveHandlerUtils {
 
    // Helper log functions.
  static void logInfo(String message, DownloadManager dm) {
    LogRelation lr = (dm instanceof LogRelation) ? (LogRelation)dm : null;
    if (lr == null) {return;}
    if (!Logger.isEnabled()) {return;}
    Logger.log(new LogEvent(lr, LogIDs.CORE, LogEvent.LT_INFORMATION, message));
  }

  static void logWarn(String message, DownloadManager dm) {
    LogRelation lr = (dm instanceof LogRelation) ? (LogRelation)dm : null;
    if (lr == null) {return;}
    if (!Logger.isEnabled()) {return;}
    Logger.log(new LogEvent(lr, LogIDs.CORE, LogEvent.LT_WARNING, message));
  }
 
  static void logError(String message, DownloadManager dm, Throwable e) {
    LogRelation lr = (dm instanceof LogRelation) ? (LogRelation)dm : null;
    if (lr == null) {return;}
    if (!Logger.isEnabled()) {return;}
    Logger.log(new LogEvent(lr, LogIDs.CORE, message, e));
  }
 
  static String describe(DownloadManager dm) {
    if (dm == null) {return "";}
    return "\"" + dm.getDisplayName() + "\"";
  }

}
TOP

Related Classes of org.gudy.azureus2.core3.download.impl.DownloadManagerMoveHandlerUtils

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.