From 28665f9515365feb61b2b26eba64ba3b0542f4be Mon Sep 17 00:00:00 2001 From: Pete Peterson <petersonpf@ornl.gov> Date: Thu, 17 Dec 2015 10:36:43 -0500 Subject: [PATCH] Logging host and startuptime for auto-reduction --- Framework/Kernel/src/ConfigService.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Framework/Kernel/src/ConfigService.cpp b/Framework/Kernel/src/ConfigService.cpp index cb7b0e1b59f..3b1899662d6 100644 --- a/Framework/Kernel/src/ConfigService.cpp +++ b/Framework/Kernel/src/ConfigService.cpp @@ -3,6 +3,7 @@ //---------------------------------------------------------------------- #include "MantidKernel/ConfigService.h" +#include "MantidKernel/DateAndTime.h" #include "MantidKernel/MantidVersion.h" #include "MantidKernel/Strings.h" #include "MantidKernel/Logger.h" @@ -244,6 +245,8 @@ ConfigServiceImpl::ConfigServiceImpl() << getPropertiesDir() << std::endl; g_log.information() << "This is Mantid version " << MantidVersion::version() << " revision " << MantidVersion::revision() << std::endl; + g_log.information() << "running on " << getComputerName() << " starting " + << DateAndTime::getCurrentTime().toFormattedString("%Y-%m-%dT%H:%MZ") << "\n"; g_log.information() << "Properties file(s) loaded: " << propertiesFilesList << std::endl; #ifndef MPI_BUILD // There is no logging to file by default in MPI build -- GitLab