Skip to content

Commit

Permalink
GUIでエラーログの設定を行うタイミングを変更
Browse files Browse the repository at this point in the history
  • Loading branch information
lltcggie committed Dec 7, 2015
1 parent 0b94421 commit 30b8c5f
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions waifu2x-caffe-gui/Source.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -537,14 +537,6 @@ class DialogEvent

const auto cuDNNCheckEndTime = std::chrono::system_clock::now();

// Caffeのエラーでないログを保存しないようにする
google::SetLogDestination(google::INFO, "");
google::SetLogDestination(google::WARNING, "");

// Caffeのエラーログを「error_log_~」に出力
google::SetLogDestination(google::ERROR, "error_log_");
google::SetLogDestination(google::FATAL, "error_log_");

Waifu2x::eWaifu2xError ret;

Waifu2x w;
Expand Down Expand Up @@ -1188,6 +1180,14 @@ int WINAPI WinMain(HINSTANCE hInstance,
{
Waifu2x::init_liblary();

// Caffeのエラーでないログを保存しないようにする
google::SetLogDestination(google::INFO, "");
google::SetLogDestination(google::WARNING, "");

// Caffeのエラーログを「error_log_~」に出力
google::SetLogDestination(google::ERROR, "error_log_");
google::SetLogDestination(google::FATAL, "error_log_");

// CDialogクラスでダイアログを作成する
CDialog cDialog;
CDialog cDialog2;
Expand Down

0 comments on commit 30b8c5f

Please sign in to comment.