Logs a message with the prefix 'LOG'.
message
LOG
static String log(String message, {bool error = true}) { String output = '[LOG] $message'; out(output, error: error); // Return for testing. return output; }