namespace InfluxDB.Client.Core
{
///
/// This enum represents REST client verbosity levels.
///
public enum LogLevel
{
///
/// Disable logging.
///
None,
///
/// Logs request and response lines.
///
Basic,
///
/// Logs request and response lines including headers.
///
Headers,
///
/// Logs request and response lines including headers and body (if present).
/// Note that applying the `Body` LogLevel will disable chunking while streaming
/// and will load the whole response into memory.
///
Body
}
}