logCurrentProcessInformation function
Implementation
void logCurrentProcessInformation(Logger logger, LogLevel logLevel) {
logger.log(
logLevel,
'Current process information: '
' pid=$pid'
' currentRss=${processCurrentRssInMB}MB'
' maxRss=${processMaxRssInMB}MB');
}