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.

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