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