mirror of
https://github.com/GeWuYou/GFramework.git
synced 2026-05-07 00:39:00 +08:00
18 lines
432 B
C#
18 lines
432 B
C#
namespace GFramework.Godot.Logging;
|
|
|
|
/// <summary>
|
|
/// Selects the Godot logger output behavior.
|
|
/// </summary>
|
|
public enum GodotLoggerMode
|
|
{
|
|
/// <summary>
|
|
/// Uses rich BBCode console output and mirrors warnings/errors to the Godot debugger panel.
|
|
/// </summary>
|
|
Debug,
|
|
|
|
/// <summary>
|
|
/// Uses plain console output without rich text or debugger panel mirroring.
|
|
/// </summary>
|
|
Release
|
|
}
|