Struct LogEntry
- Namespace
- Luny /
- Assembly
- Luny.dll
Represents a single log entry in the internal Luny logging system. Uses FrameCount and ElapsedSeconds instead of DateTime for precise game-time tracking.
public struct LogEntry
Expand Details ...
- Inherited Members
Fields
Context
Context type name that generated this log (e.g., "LunyScriptRunner", "LogMessageBlock").
public String Context
Field Value
- String
ElapsedSeconds
Elapsed time in seconds since application start (from ITimeServiceProvider). -1.0 if time service not available.
public Double ElapsedSeconds
Field Value
- Double
FrameCount
Frame number when this log entry was created (from ITimeServiceProvider). -1 if time service not available.
public Int64 FrameCount
Field Value
Level
Severity level of the log message.
public LogLevel Level
Field Value
Message
The log message content.
public String Message
Field Value
- String
Methods
ToString()
public override String ToString()
Returns
- String