[Modify] Polish it

This commit is contained in:
sta 2015-11-03 17:24:26 +09:00
parent f8362fd367
commit f1e2f46bef

View File

@ -4,7 +4,7 @@
*
* The MIT License
*
* Copyright (c) 2013-2014 sta.blockhead
* Copyright (c) 2013-2015 sta.blockhead
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
@ -31,32 +31,32 @@ using System;
namespace WebSocketSharp
{
/// <summary>
/// Contains the values of the logging level.
/// Specifies the logging level.
/// </summary>
public enum LogLevel
{
/// <summary>
/// Indicates the bottom logging level.
/// Specifies the bottom logging level.
/// </summary>
Trace,
/// <summary>
/// Indicates the 2nd logging level from the bottom.
/// Specifies the 2nd logging level from the bottom.
/// </summary>
Debug,
/// <summary>
/// Indicates the 3rd logging level from the bottom.
/// Specifies the 3rd logging level from the bottom.
/// </summary>
Info,
/// <summary>
/// Indicates the 3rd logging level from the top.
/// Specifies the 3rd logging level from the top.
/// </summary>
Warn,
/// <summary>
/// Indicates the 2nd logging level from the top.
/// Specifies the 2nd logging level from the top.
/// </summary>
Error,
/// <summary>
/// Indicates the top logging level.
/// Specifies the top logging level.
/// </summary>
Fatal
}