From e15de4a9d5857eed288899489ff5229746099322 Mon Sep 17 00:00:00 2001 From: Peter Peterson <petersonpf@ornl.gov> Date: Wed, 28 Sep 2011 15:08:03 +0000 Subject: [PATCH] Adding some other common variables for the smarter users. Fixes #3862. --- Code/Mantid/Framework/Kernel/src/ConfigService.cpp | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Code/Mantid/Framework/Kernel/src/ConfigService.cpp b/Code/Mantid/Framework/Kernel/src/ConfigService.cpp index d6fabadf095..3a528e9535f 100644 --- a/Code/Mantid/Framework/Kernel/src/ConfigService.cpp +++ b/Code/Mantid/Framework/Kernel/src/ConfigService.cpp @@ -605,6 +605,14 @@ void ConfigServiceImpl::createUserPropertiesFile() const filestr << "#overriding any value set in the Mantid.properties file" << std::endl; filestr << "#algorithms.retained = 90" << std::endl; + filestr << std::endl; + filestr << "#uncomment to enable archive search - ICat and Orbiter" << std::endl; + filestr << "#datasearch.searcharchive = On" << std::endl; + + filestr << std::endl; + filestr << "#uncomment to change logging level. Valid values are: error, warning, notice, information, debug" << std::endl; + filestr << "#logging.loggers.root.level = information" << std::endl; + filestr.close(); } catch (std::runtime_error& ex) { -- GitLab