// Copyright (c) 2025-2026 GeWuYou
// SPDX-License-Identifier: Apache-2.0
namespace GFramework.Godot.Logging;
///
/// Selects the Godot logger output behavior.
///
public enum GodotLoggerMode
{
///
/// Uses rich BBCode console output and mirrors warnings/errors to the Godot debugger panel.
///
Debug,
///
/// Uses plain console output without rich text or debugger panel mirroring.
///
Release
}