Small fixes
This commit is contained in:
parent
515862acbd
commit
74cf713121
@ -1,16 +1,18 @@
|
|||||||
package fr.pandacube.lib.bungee.util;
|
package fr.pandacube.lib.bungee.util;
|
||||||
|
|
||||||
|
import com.google.common.io.Files;
|
||||||
|
import fr.pandacube.lib.bungee.PandaLibBungee;
|
||||||
|
import net.md_5.bungee.api.ProxyServer;
|
||||||
|
import net.md_5.bungee.log.ConciseFormatter;
|
||||||
|
|
||||||
import java.io.BufferedWriter;
|
import java.io.BufferedWriter;
|
||||||
import java.io.File;
|
import java.io.File;
|
||||||
import java.io.FileInputStream;
|
|
||||||
import java.io.FileNotFoundException;
|
|
||||||
import java.io.FileOutputStream;
|
import java.io.FileOutputStream;
|
||||||
import java.io.FileWriter;
|
import java.io.FileWriter;
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.text.DateFormat;
|
import java.text.DateFormat;
|
||||||
import java.text.SimpleDateFormat;
|
import java.text.SimpleDateFormat;
|
||||||
import java.util.Date;
|
import java.util.Date;
|
||||||
import java.util.concurrent.ThreadFactory;
|
|
||||||
import java.util.logging.ErrorManager;
|
import java.util.logging.ErrorManager;
|
||||||
import java.util.logging.Filter;
|
import java.util.logging.Filter;
|
||||||
import java.util.logging.Handler;
|
import java.util.logging.Handler;
|
||||||
@ -18,11 +20,6 @@ import java.util.logging.Level;
|
|||||||
import java.util.logging.LogRecord;
|
import java.util.logging.LogRecord;
|
||||||
import java.util.zip.GZIPOutputStream;
|
import java.util.zip.GZIPOutputStream;
|
||||||
|
|
||||||
import com.google.common.io.Files;
|
|
||||||
import fr.pandacube.lib.bungee.PandaLibBungee;
|
|
||||||
import net.md_5.bungee.api.ProxyServer;
|
|
||||||
import net.md_5.bungee.log.ConciseFormatter;
|
|
||||||
|
|
||||||
public class DailyLogRotateFileHandler extends Handler {
|
public class DailyLogRotateFileHandler extends Handler {
|
||||||
|
|
||||||
private static final DateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd");
|
private static final DateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd");
|
||||||
|
@ -72,7 +72,7 @@ public class RotatedLogsBackupProcess extends BackupProcess {
|
|||||||
success = true;
|
success = true;
|
||||||
|
|
||||||
Log.info("[Backup] Finished for " + ChatColor.GRAY + getDisplayName() + ChatColor.RESET);
|
Log.info("[Backup] Finished for " + ChatColor.GRAY + getDisplayName() + ChatColor.RESET);
|
||||||
} catch (final Exception e) {
|
} catch (Exception e) {
|
||||||
Log.severe("[Backup] Failed for : " + ChatColor.GRAY + getDisplayName() + ChatColor.RESET, e);
|
Log.severe("[Backup] Failed for : " + ChatColor.GRAY + getDisplayName() + ChatColor.RESET, e);
|
||||||
} finally {
|
} finally {
|
||||||
onBackupEnd(success);
|
onBackupEnd(success);
|
||||||
|
Loading…
Reference in New Issue
Block a user