// Copyright © 2014 The CefSharp Authors. All rights reserved. // // Use of this source code is governed by a BSD-style license that can be found in the LICENSE file. namespace CefSharp { /// /// LogSeverity /// public enum LogSeverity { /// /// Default logging (currently Info logging) /// Default = 0, /// /// Verbose logging. /// Verbose, /// /// Info logging /// Info, /// /// Warning logging /// Warning, /// /// Error logging /// Error, /// /// Fatal logging. /// Fatal, /// /// Disable logging to file for all messages, and to stderr for messages with severity less than FATAL. /// Disable = 99 }; }