namespace Logging { interface LogServer { // Log a string to our current file. // Returns true for success, and false for failure. // We could have chosen to use exceptions in case of failure. bool logString(string toLog); } }