14 lines
428 B
C#
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
|
|
}
|
|
} |