public static Write(string text, string source)
 {
     OtherStaticClass.Log(source, text);
 }
 public static Write(string text)
 {
     OtherStaticClass.Log(UsedSource, text);
 }
 private static Write(string source, string text)
 {
     OtherStaticClass.Log(source, text);
 }