001package com.identityworksllc.iiq.common.logging; 002 003/** 004 * An interface to abstract the log capturing between 7.x (which uses log4j) and 8.x (which uses log4j2) 005 */ 006public interface CaptureLogs { 007 008 /** 009 * Capture the most interesting loggers 010 */ 011 public void captureMost(); 012 013 /** 014 * Capture a specific set of loggers 015 * @param names The names of the loggers to capture 016 */ 017 public void capture(String... names); 018 019}