 | LoggerRunningLog Method |
Gets or sets the running log (for sending just current log via Email, etc).
Namespace:
Koden.Utils.Logger
Assembly:
Koden.Utils.Logger (in Koden.Utils.Logger.dll) Version: 1.0.0.0 (1.0.0.0)
Syntaxpublic string RunningLog(
bool AsHTML = false,
bool includeVerbose = false
)
Public Function RunningLog (
Optional AsHTML As Boolean = false,
Optional includeVerbose As Boolean = false
) As String
public:
virtual String^ RunningLog(
bool AsHTML = false,
bool includeVerbose = false
) sealed
abstract RunningLog :
?AsHTML : bool *
?includeVerbose : bool
(* Defaults:
let _AsHTML = defaultArg AsHTML false
let _includeVerbose = defaultArg includeVerbose false
*)
-> string
override RunningLog :
?AsHTML : bool *
?includeVerbose : bool
(* Defaults:
let _AsHTML = defaultArg AsHTML false
let _includeVerbose = defaultArg includeVerbose false
*)
-> string
Parameters
- AsHTML (Optional)
- Type: SystemBoolean
if set to true newlines are replaced with
. - includeVerbose (Optional)
- Type: SystemBoolean
if set to true [include verbose] logs.
Field Value
Type:
StringThe running log of the current operation.
Return Value
Type:
String[Missing <returns> documentation for "M:Koden.Utils.Logger.Logger.RunningLog(System.Boolean,System.Boolean)"]
Implements
ILoggerRunningLog(Boolean, Boolean)
See Also