forked from mia/Aegisub
Clean up old log files rather than just letting them accumulate forever
Originally committed to SVN as r6654.
This commit is contained in:
parent
bd0f6a4c2b
commit
566f08f308
1 changed files with 2 additions and 0 deletions
|
@ -70,6 +70,7 @@
|
||||||
#include "subtitle_format.h"
|
#include "subtitle_format.h"
|
||||||
#include "version.h"
|
#include "version.h"
|
||||||
#include "video_context.h"
|
#include "video_context.h"
|
||||||
|
#include "utils.h"
|
||||||
|
|
||||||
#include <libaegisub/io.h>
|
#include <libaegisub/io.h>
|
||||||
#include <libaegisub/log.h>
|
#include <libaegisub/log.h>
|
||||||
|
@ -168,6 +169,7 @@ bool AegisubApp::OnInit() {
|
||||||
wxString path_log = StandardPaths::DecodePath("?user/log/");
|
wxString path_log = StandardPaths::DecodePath("?user/log/");
|
||||||
wxFileName::Mkdir(path_log, 0777, wxPATH_MKDIR_FULL);
|
wxFileName::Mkdir(path_log, 0777, wxPATH_MKDIR_FULL);
|
||||||
agi::log::log->Subscribe(new agi::log::JsonEmitter(STD_STR(path_log), agi::log::log));
|
agi::log::log->Subscribe(new agi::log::JsonEmitter(STD_STR(path_log), agi::log::log));
|
||||||
|
CleanCache(path_log, "*.json", 10, 100);
|
||||||
|
|
||||||
StartupLog("Load user configuration");
|
StartupLog("Load user configuration");
|
||||||
try {
|
try {
|
||||||
|
|
Loading…
Reference in a new issue