diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index b2d5028cd710f5b77e04a2d407a75192cdf4a44e..9328bd1c5e1ea0e7ba5044c719508040774441bd 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -22,11 +22,6 @@ variables: # Mote: "WIP:" merge request, non-WIP merge requests and "Ready for Code Review" MR are all # handled explicitly # - - - -# normal multi-step pipeline for each commit - stages: - quality - config diff --git a/Framework/Logging/Logging.h b/Framework/Logging/Logging.h index 24bbc634bfdd846a232c7f84a86ec15550a3834a..a06756e0525835da55ada749c1941b092126d389 100644 --- a/Framework/Logging/Logging.h +++ b/Framework/Logging/Logging.h @@ -46,11 +46,13 @@ namespace corsika::logging { } /** - * Get a reference to a named logger. + * Get a smart pointer to an existing logger. * - * If the logger does not exist, it is created. + * If the logger does not exist, it is created and returned. * * @param name The name of the logger to get. + * @param defaultlog If True, make this the default logger. + * @returns The constructed and formatted logger. */ auto GetLogger(std::string const& name, bool const defaultlog = false) {