mirror of
https://github.com/vgough/encfs.git
synced 2025-01-05 05:29:33 +01:00
5f0806c5cc
git-vendor-name: easylogging git-vendor-dir: vendor/github.com/muflihun/easyloggingpp git-vendor-repository: https://github.com/muflihun/easyloggingpp git-vendor-ref: master
21 lines
461 B
C++
21 lines
461 B
C++
//
|
|
// This file is part of Easylogging++ samples
|
|
// Default log file using '--default-log-file' arg
|
|
//
|
|
// Revision 1.0
|
|
// @author mkhan3189
|
|
//
|
|
|
|
#include "easylogging++.h"
|
|
|
|
INITIALIZE_EASYLOGGINGPP
|
|
|
|
int main(int argc, char** argv) {
|
|
START_EASYLOGGINGPP(argc, argv);
|
|
|
|
LOG(INFO) << "My log message - hopefully you have reconfigured log file by using"
|
|
<< " --default-log-file=blah.log and defined ELPP_NO_DEFAULT_LOG_FILE";
|
|
|
|
return 0;
|
|
}
|