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.

242 lines
9.2 KiB

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