#pragma warning disable 1591
namespace Npgsql.Logging;
public enum NpgsqlLogLevel
{
Trace = 1,
Debug = 2,
Info = 3,
Warn = 4,
Error = 5,
Fatal = 6,
}