Files
EonaCat.LogStack/EonaCat.LogStack/EonaCatLoggerCore/FileOutputFormat.cs
2026-02-27 21:12:55 +01:00

14 lines
428 B
C#

// This file is part of the EonaCat project(s) which is released under the Apache License.
// See the LICENSE file or go to https://EonaCat.com/License for full license details.
namespace EonaCat.LogStack.EonaCatLogStackCore
{
public enum FileOutputFormat
{
Text,
Json,
Xml,
Csv, // RFC-4180 CSV
StructuredJson, // Machine-readable JSON with correlation IDs
}
}