logEnvironmentInformation function
Implementation
void logEnvironmentInformation(Logger logger, LogLevel logLevel) {
logger.log(
logLevel,
'Environment information: '
' numberOfProcessors=${Platform.numberOfProcessors}'
' localeName="${Platform.localeName}"'
' operatingSystem="${Platform.operatingSystem}"'
' operatingSystemVersion="${Platform.operatingSystemVersion}"'
' localHostname="${Platform.localHostname}"'
' resolvedExecutable="${Platform.resolvedExecutable}"'
' dartRuntimeVersion="${Platform.version}"');
}