You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

220 lines
8.3 KiB

  1. <!DOCTYPE html>
  2. <!--[if IE]><![endif]-->
  3. <html>
  4. <head>
  5. <meta charset="utf-8">
  6. <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
  7. <title>Enum Logger.LogLevel
  8. </title>
  9. <meta name="viewport" content="width=device-width">
  10. <meta name="title" content="Enum Logger.LogLevel
  11. ">
  12. <meta name="generator" content="docfx 2.42.4.0">
  13. <link rel="shortcut icon" href="../favicon.ico">
  14. <link rel="stylesheet" href="../styles/docfx.vendor.css">
  15. <link rel="stylesheet" href="../styles/docfx.css">
  16. <link rel="stylesheet" href="../styles/main.css">
  17. <meta property="docfx:navrel" content="../toc.html">
  18. <meta property="docfx:tocrel" content="toc.html">
  19. </head>
  20. <body data-spy="scroll" data-target="#affix" data-offset="120">
  21. <div id="wrapper">
  22. <header>
  23. <nav id="autocollapse" class="navbar navbar-inverse ng-scope" role="navigation">
  24. <div class="container">
  25. <div class="navbar-header">
  26. <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar">
  27. <span class="sr-only">Toggle navigation</span>
  28. <span class="icon-bar"></span>
  29. <span class="icon-bar"></span>
  30. <span class="icon-bar"></span>
  31. </button>
  32. <a class="navbar-brand" href="../index.html">
  33. <img id="logo" class="svg" src="../logo.svg" alt="">
  34. </a>
  35. </div>
  36. <div class="collapse navbar-collapse" id="navbar">
  37. <form class="navbar-form navbar-right" role="search" id="search">
  38. <div class="form-group">
  39. <input type="text" class="form-control" id="search-query" placeholder="Search" autocomplete="off">
  40. </div>
  41. </form>
  42. </div>
  43. </div>
  44. </nav>
  45. <div class="subnav navbar navbar-default">
  46. <div class="container hide-when-search" id="breadcrumb">
  47. <ul class="breadcrumb">
  48. <li></li>
  49. </ul>
  50. </div>
  51. </div>
  52. </header>
  53. <div role="main" class="container body-content hide-when-search">
  54. <div class="sidenav hide-when-search">
  55. <a class="btn toc-toggle collapse" data-toggle="collapse" href="#sidetoggle" aria-expanded="false" aria-controls="sidetoggle">Show / Hide Table of Contents</a>
  56. <div class="sidetoggle collapse" id="sidetoggle">
  57. <div id="sidetoc"></div>
  58. </div>
  59. </div>
  60. <div class="article row grid-right">
  61. <div class="col-md-10">
  62. <article class="content wrap" id="_content" data-uid="IPA.Logging.Logger.LogLevel">
  63. <h1 id="IPA_Logging_Logger_LogLevel" data-uid="IPA.Logging.Logger.LogLevel" class="text-break">Enum Logger.LogLevel
  64. </h1>
  65. <div class="markdown level0 summary"><p>An enum providing log level filters.</p>
  66. </div>
  67. <div class="markdown level0 conceptual"></div>
  68. <h6><strong>Namespace</strong>: <a class="xref" href="IPA.Logging.html">IPA.Logging</a></h6>
  69. <h6><strong>Assembly</strong>: IPA.Loader.dll</h6>
  70. <h5 id="IPA_Logging_Logger_LogLevel_syntax">Syntax</h5>
  71. <div class="codewrapper">
  72. <pre><code class="lang-csharp hljs">[Flags]
  73. public enum LogLevel : byte</code></pre>
  74. </div>
  75. <h3 id="fields">Fields
  76. </h3>
  77. <table class="table table-bordered table-striped table-condensed">
  78. <thead>
  79. <tr>
  80. <th>Name</th>
  81. <th>Description</th>
  82. </tr>
  83. <thead>
  84. <tbody>
  85. <tr>
  86. <td id="IPA_Logging_Logger_LogLevel_All">All</td>
  87. <td><p>Shows all messages.</p>
  88. </td>
  89. </tr>
  90. <tr>
  91. <td id="IPA_Logging_Logger_LogLevel_CriticalOnly">CriticalOnly</td>
  92. <td><p>Only shows Critical messages.</p>
  93. </td>
  94. </tr>
  95. <tr>
  96. <td id="IPA_Logging_Logger_LogLevel_DebugOnly">DebugOnly</td>
  97. <td><p>Only shows Debug messages.</p>
  98. </td>
  99. </tr>
  100. <tr>
  101. <td id="IPA_Logging_Logger_LogLevel_ErrorOnly">ErrorOnly</td>
  102. <td><p>Only shows Error messages.</p>
  103. </td>
  104. </tr>
  105. <tr>
  106. <td id="IPA_Logging_Logger_LogLevel_ErrorUp">ErrorUp</td>
  107. <td><p>Shows all messages error and up.</p>
  108. </td>
  109. </tr>
  110. <tr>
  111. <td id="IPA_Logging_Logger_LogLevel_InfoOnly">InfoOnly</td>
  112. <td><p>Only shows info messages.</p>
  113. </td>
  114. </tr>
  115. <tr>
  116. <td id="IPA_Logging_Logger_LogLevel_InfoUp">InfoUp</td>
  117. <td><p>Shows all messages info and up.</p>
  118. </td>
  119. </tr>
  120. <tr>
  121. <td id="IPA_Logging_Logger_LogLevel_None">None</td>
  122. <td><p>Allow no messages through.</p>
  123. </td>
  124. </tr>
  125. <tr>
  126. <td id="IPA_Logging_Logger_LogLevel_NoticeOnly">NoticeOnly</td>
  127. <td><p>Only shows notice messages.</p>
  128. </td>
  129. </tr>
  130. <tr>
  131. <td id="IPA_Logging_Logger_LogLevel_NoticeUp">NoticeUp</td>
  132. <td><p>Shows all messages Notice and up.</p>
  133. </td>
  134. </tr>
  135. <tr>
  136. <td id="IPA_Logging_Logger_LogLevel_Undefined">Undefined</td>
  137. <td><p>Used for when the level is undefined.</p>
  138. </td>
  139. </tr>
  140. <tr>
  141. <td id="IPA_Logging_Logger_LogLevel_WarningOnly">WarningOnly</td>
  142. <td><p>Only shows Warning messages.</p>
  143. </td>
  144. </tr>
  145. <tr>
  146. <td id="IPA_Logging_Logger_LogLevel_WarningUp">WarningUp</td>
  147. <td><p>Shows all messages warning and up.</p>
  148. </td>
  149. </tr>
  150. </tbody>
  151. </thead></thead></table>
  152. <h3 id="extensionmethods">Extension Methods</h3>
  153. <div>
  154. <a class="xref" href="IPA.Utilities.ReflectionUtil.html#IPA_Utilities_ReflectionUtil_SetPrivateField_System_Object_System_String_System_Object_">ReflectionUtil.SetPrivateField(String, Object)</a>
  155. </div>
  156. <div>
  157. <a class="xref" href="IPA.Utilities.ReflectionUtil.html#IPA_Utilities_ReflectionUtil_GetPrivateField__1_System_Object_System_String_">ReflectionUtil.GetPrivateField&lt;T&gt;(String)</a>
  158. </div>
  159. <div>
  160. <a class="xref" href="IPA.Utilities.ReflectionUtil.html#IPA_Utilities_ReflectionUtil_SetPrivateProperty_System_Object_System_String_System_Object_">ReflectionUtil.SetPrivateProperty(String, Object)</a>
  161. </div>
  162. <div>
  163. <a class="xref" href="IPA.Utilities.ReflectionUtil.html#IPA_Utilities_ReflectionUtil_InvokePrivateMethod_System_Object_System_String_System_Object___">ReflectionUtil.InvokePrivateMethod(String, Object[])</a>
  164. </div>
  165. <div>
  166. <a class="xref" href="IPA.Utilities.ReflectionUtil.html#IPA_Utilities_ReflectionUtil_InvokePrivateMethod__1_System_Object_System_String_System_Object___">ReflectionUtil.InvokePrivateMethod&lt;T&gt;(String, Object[])</a>
  167. </div>
  168. </article>
  169. </div>
  170. <div class="hidden-sm col-md-2" role="complementary">
  171. <div class="sideaffix">
  172. <div class="contribution">
  173. <ul class="nav">
  174. <li>
  175. <a href="https://github.com/beat-saber-modding-group/BeatSaber-IPA-Reloaded/new/master/apiSpec/new?filename=IPA_Logging_Logger_LogLevel.md&amp;value=---%0Auid%3A%20IPA.Logging.Logger.LogLevel%0Asummary%3A%20'*You%20can%20override%20summary%20for%20the%20API%20here%20using%20*MARKDOWN*%20syntax'%0A---%0A%0A*Please%20type%20below%20more%20information%20about%20this%20API%3A*%0A%0A" class="contribution-link">Improve this Doc</a>
  176. </li>
  177. <li>
  178. <a href="https://github.com/beat-saber-modding-group/BeatSaber-IPA-Reloaded/blob/master/IPA.Loader/Logging/Logger.cs/#L93" class="contribution-link">View Source</a>
  179. </li>
  180. </ul>
  181. </div>
  182. <nav class="bs-docs-sidebar hidden-print hidden-xs hidden-sm affix" id="affix">
  183. <!-- <p><a class="back-to-top" href="#top">Back to top</a><p> -->
  184. </nav>
  185. </div>
  186. </div>
  187. </div>
  188. </div>
  189. <footer>
  190. <div class="grad-bottom"></div>
  191. <div class="footer">
  192. <div class="container">
  193. <span class="pull-right">
  194. <a href="#top">Back to top</a>
  195. </span>
  196. <span>Generated by <strong>DocFX</strong></span>
  197. </div>
  198. </div>
  199. </footer>
  200. </div>
  201. <script type="text/javascript" src="../styles/docfx.vendor.js"></script>
  202. <script type="text/javascript" src="../styles/docfx.js"></script>
  203. <script type="text/javascript" src="../styles/main.js"></script>
  204. </body>
  205. </html>