Ejemplo n.º 1
0
 public static void Log(this PartModule pm, string msg, params object[] args) =>
 Utils.Log(string.Format("{0}: {1}", pm.GetID(), msg), args);
 public static void Log(this PartModule pm, string msg, params object[] args) =>
 Utils.Log($"{pm.GetID()}: {msg}", args);
Ejemplo n.º 3
0
 public static void Warning(this PartModule pm, string msg) => Utils.Warning($"{pm.GetID()}: {msg}");
Ejemplo n.º 4
0
 public static void Error(this PartModule pm, string msg) => Utils.Error($"{pm.GetID()}: {msg}");
Ejemplo n.º 5
0
 public static void Info(this PartModule pm, string msg) => Utils.Info($"{pm.GetID()}: {msg}");