diff --git a/README.md b/README.md index d83b4b94c..b10fa960d 100644 --- a/README.md +++ b/README.md @@ -373,7 +373,7 @@ Form some parts of logging you can set logging flags; here are flags supported: |------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------| | NewLineForContainer | Makes sure we have new line for each container log entry | | AllowVerboseIfModuleNotSpecified | Makes sure if -vmodule is used and does not specifies a module, then verbose logging is allowed via that module. Say param was -vmodule=main*=3 and a verbose log is being written from a file called something.cpp then if this flag is enabled, log will be written otherwise it will be disallowed. Note: having this defeats purpose of -vmodule | -| LogDetailedCrashReason | When handling crashes by default, detailed crash reason will be logged as well ([issue #90](https://github.com/easylogging/easyloggingpp/issues/90)) | +| LogDetailedCrashReason | When handling crashes by default, detailed crash reason will be logged as well (Disabled by default) ([issue #90](https://github.com/easylogging/easyloggingpp/issues/90)) | You can set these flags by using static el::Helpers::addFlag and el::Helpers::removeFlag. You can check to see if certain flag is available by using el::Helpers::hasFlag, all these functions take strong enums el::LoggingFlag diff --git a/src/easylogging++.h b/src/easylogging++.h index 3c11a8a9f..b8221d49d 100755 --- a/src/easylogging++.h +++ b/src/easylogging++.h @@ -3131,7 +3131,6 @@ class Storage : private base::NoCopy { performanceLogger->refConfigurations().setGlobally(ConfigurationType::Format, "%datetime %level %log"); performanceLogger->reconfigure(); addFlag(LoggingFlag::AllowVerboseIfModuleNotSpecified); - addFlag(LoggingFlag::LogDetailedCrashReason); } virtual ~Storage(void) {