Output logs to AppUser/Roaming/Parasitemia/Logs
[master-thesis.git] / Parasitemia / ParasitemiaCore / Config.fs
index e000d65..e5b853c 100644 (file)
@@ -139,3 +139,10 @@ type Config (param : Parameters) =
     member this.Copy () =
         this.MemberwiseClone () :?> Config
 
+    override this.ToString () =
+        $"{{{nameof Config}: " +
+        $"{nameof this.LPFStandardDeviationParasite} = {this.LPFStandardDeviationParasite}, " +
+        $"{nameof this.LPFStandardDeviationRBC} = {this.LPFStandardDeviationRBC}, " +
+        $"{nameof this.RBCRadiusByResolution} = {this.RBCRadiusByResolution}, " +
+        $"{nameof this.RBCRadius} = {this.RBCRadius}, " +
+        $"{nameof this.Parameters} = {this.Parameters}}}"