forked from mia/Aegisub
Add some debug trace info.
Originally committed to SVN as r4418.
This commit is contained in:
parent
709718ffb6
commit
401560b190
4 changed files with 11 additions and 2 deletions
|
@ -24,12 +24,14 @@
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include "libaegisub/access.h"
|
#include "libaegisub/access.h"
|
||||||
|
#include "libaegisub/log.h"
|
||||||
#include "libaegisub/mru.h"
|
#include "libaegisub/mru.h"
|
||||||
#include "libaegisub/io.h"
|
#include "libaegisub/io.h"
|
||||||
|
|
||||||
namespace agi {
|
namespace agi {
|
||||||
|
|
||||||
MRUManager::MRUManager(const std::string &config, const std::string &default_config): config_name(config) {
|
MRUManager::MRUManager(const std::string &config, const std::string &default_config): config_name(config) {
|
||||||
|
LOG_D("agi/mru") << "Loading MRU List";
|
||||||
|
|
||||||
json::UnknownElement root;
|
json::UnknownElement root;
|
||||||
std::istream *stream;
|
std::istream *stream;
|
||||||
|
|
|
@ -25,12 +25,15 @@
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include "libaegisub/io.h"
|
#include "libaegisub/io.h"
|
||||||
|
#include "libaegisub/log.h"
|
||||||
|
|
||||||
#include "option_visit.h"
|
#include "option_visit.h"
|
||||||
|
|
||||||
namespace agi {
|
namespace agi {
|
||||||
|
|
||||||
Options::Options(const std::string &file, const std::string& default_config):
|
Options::Options(const std::string &file, const std::string& default_config):
|
||||||
config_file(file), config_default(default_config), config_loaded(false) {
|
config_file(file), config_default(default_config), config_loaded(false) {
|
||||||
|
LOG_D("agi/options") << "New Options object";
|
||||||
std::istringstream stream(default_config);
|
std::istringstream stream(default_config);
|
||||||
LoadConfig(stream);
|
LoadConfig(stream);
|
||||||
}
|
}
|
||||||
|
|
|
@ -27,6 +27,7 @@
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include "libaegisub/io.h"
|
#include "libaegisub/io.h"
|
||||||
|
#include "libaegisub/log.h"
|
||||||
#include "libaegisub/util.h"
|
#include "libaegisub/util.h"
|
||||||
|
|
||||||
|
|
||||||
|
@ -34,6 +35,7 @@ namespace agi {
|
||||||
namespace io {
|
namespace io {
|
||||||
|
|
||||||
std::ifstream* Open(const std::string &file) {
|
std::ifstream* Open(const std::string &file) {
|
||||||
|
LOG_D("agi/io/open/file") << file;
|
||||||
acs::CheckFileRead(file);
|
acs::CheckFileRead(file);
|
||||||
|
|
||||||
std::ifstream *stream = new std::ifstream(file.c_str());
|
std::ifstream *stream = new std::ifstream(file.c_str());
|
||||||
|
@ -46,7 +48,7 @@ std::ifstream* Open(const std::string &file) {
|
||||||
|
|
||||||
|
|
||||||
Save::Save(const std::string& file): file_name(file) {
|
Save::Save(const std::string& file): file_name(file) {
|
||||||
|
LOG_D("agi/io/save/file") << file;
|
||||||
const std::string pwd = util::DirName(file);
|
const std::string pwd = util::DirName(file);
|
||||||
|
|
||||||
acs::CheckDirWrite(pwd.c_str());
|
acs::CheckDirWrite(pwd.c_str());
|
||||||
|
|
|
@ -27,6 +27,7 @@
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include "libaegisub/io.h"
|
#include "libaegisub/io.h"
|
||||||
|
#include "libaegisub/log.h"
|
||||||
#include "libaegisub/util.h"
|
#include "libaegisub/util.h"
|
||||||
|
|
||||||
|
|
||||||
|
@ -34,6 +35,7 @@ namespace agi {
|
||||||
namespace io {
|
namespace io {
|
||||||
|
|
||||||
std::ifstream* Open(const std::string &file) {
|
std::ifstream* Open(const std::string &file) {
|
||||||
|
LOG_D("agi/io/open/file") << file;
|
||||||
acs::CheckFileRead(file);
|
acs::CheckFileRead(file);
|
||||||
|
|
||||||
std::ifstream *stream = new std::ifstream(file.c_str());
|
std::ifstream *stream = new std::ifstream(file.c_str());
|
||||||
|
@ -48,7 +50,7 @@ std::ifstream* Open(const std::string &file) {
|
||||||
|
|
||||||
|
|
||||||
Save::Save(const std::string& file): file_name(file) {
|
Save::Save(const std::string& file): file_name(file) {
|
||||||
|
LOG_D("agi/io/save/file") << file;
|
||||||
const std::string pwd = util::DirName(file);
|
const std::string pwd = util::DirName(file);
|
||||||
|
|
||||||
acs::CheckDirWrite(pwd.c_str());
|
acs::CheckDirWrite(pwd.c_str());
|
||||||
|
|
Loading…
Reference in a new issue