Example #1
0
 public static void SaveToFile(KeyValue kv, IAbsoluteFilePath fp, bool asBinary = false)
 {
     MainLog.Logger.Debug($"Saving KV to file {fp}, {asBinary}");
     kv.SaveToFile(kv.ToString(), asBinary);
     MainLog.Logger.Debug($"Saved KV to file {fp}, {asBinary}");
 }