LogInfo function

void LogInfo(
  1. String s
)

Implementation

void LogInfo(String s) {
  if (gLogLevel > 0) print("I: " + s);
}