123456 |
- {
- "html": "<div class=\"section\" id=\"installation\">\n<h2>Installation</h2>\n<p>Using Maven:</p>\n<div class=\"highlight-xml\"><div class=\"highlight\" style=\"background: #ffffff\"><pre style=\"line-height: 125%\"><span></span><span style=\"color: #2eb0f7\"><dependency></span>\n <span style=\"color: #2eb0f7\"><groupId></span>io.sentry<span style=\"color: #2eb0f7\"></groupId></span>\n <span style=\"color: #2eb0f7\"><artifactId></span>sentry<span style=\"color: #2eb0f7\"></artifactId></span>\n <span style=\"color: #2eb0f7\"><version></span>1.6.3<span style=\"color: #2eb0f7\"></version></span>\n<span style=\"color: #2eb0f7\"></dependency></span>\n</pre></div>\n</div>\n<p>Using Gradle:</p>\n<div class=\"highlight-groovy\"><div class=\"highlight\" style=\"background: #ffffff\"><pre style=\"line-height: 125%\"><span></span><span style=\"color: #111111\">compile</span> <span style=\"color: #e8535a\">'io.sentry:sentry:1.6.3'</span>\n</pre></div>\n</div>\n<p>Using SBT:</p>\n<div class=\"highlight-scala\"><div class=\"highlight\" style=\"background: #ffffff\"><pre style=\"line-height: 125%\"><span></span><span style=\"color: #111111\">libraryDependencies</span> <span style=\"color: #4b4f5c\">+=</span> <span style=\"color: #e8535a\">"io.sentry"</span> <span style=\"color: #4b4f5c\">%</span> <span style=\"color: #e8535a\">"sentry"</span> <span style=\"color: #4b4f5c\">%</span> <span style=\"color: #e8535a\">"1.6.3"</span>\n</pre></div>\n</div>\n<p>For other dependency managers see the <a class=\"reference external\" href=\"https://search.maven.org/#artifactdetails%7Cio.sentry%7Csentry%7C1.6.3%7Cjar\">central Maven repository</a>.</p>\n</div>\n\n\n<div class=\"section\" id=\"usage\">\n<h2>Usage</h2>\n<p>The following example configures a <code class=\"docutils literal\"><span class=\"pre\">ConsoleHandler</span></code> that logs to standard out\nat the <code class=\"docutils literal\"><span class=\"pre\">INFO</span></code> level and a <code class=\"docutils literal\"><span class=\"pre\">SentryHandler</span></code> that logs to the Sentry server at\nthe <code class=\"docutils literal\"><span class=\"pre\">WARN</span></code> level. The <code class=\"docutils literal\"><span class=\"pre\">ConsoleHandler</span></code> is only provided as an example of\na non-Sentry appender that is set to a different logging threshold, like one you\nmay already have in your project.</p>\n<p>Example configuration using the <code class=\"docutils literal\"><span class=\"pre\">logging.properties</span></code> format:</p>\n<div class=\"highlight-ini\"><div class=\"highlight\" style=\"background: #ffffff\"><pre style=\"line-height: 125%\"><span></span><span style=\"color: #34c08b; font-style: italic\"># Enable the Console and Sentry handlers</span>\n<span style=\"color: #a47ac6\">handlers</span><span style=\"color: #4b4f5c\">=</span><span style=\"color: #e8535a\">java.util.logging.ConsoleHandler,io.sentry.jul.SentryHandler</span>\n\n<span style=\"color: #34c08b; font-style: italic\"># Set the default log level to INFO</span>\n<span style=\"color: #a47ac6\">.level</span><span style=\"color: #4b4f5c\">=</span><span style=\"color: #e8535a\">INFO</span>\n\n<span style=\"color: #34c08b; font-style: italic\"># Override the Sentry handler log level to WARNING</span>\n<span style=\"color: #a47ac6\">io.sentry.jul.SentryHandler.level</span><span style=\"color: #4b4f5c\">=</span><span style=\"color: #e8535a\">WARNING</span>\n</pre></div>\n</div>\n<p>When starting your application, add the <code class=\"docutils literal\"><span class=\"pre\">java.util.logging.config.file</span></code> to\nthe system properties, with the full path to the <code class=\"docutils literal\"><span class=\"pre\">logging.properties</span></code> as\nits value:</p>\n<div class=\"highlight-python\"><div class=\"highlight\" style=\"background: #ffffff\"><pre style=\"line-height: 125%\"><span></span>$ java -Djava.util.logging.config.file=/path/to/app.properties MyClass\n</pre></div>\n</div>\n<p>Next, <strong>you’ll need to configure your DSN</strong> (client key) and optionally other values such as\n<code class=\"docutils literal\"><span class=\"pre\">environment</span></code> and <code class=\"docutils literal\"><span class=\"pre\">release</span></code>. <a class=\"reference internal\" href=\"https://docs.getsentry.com/clients/java/config/#configuration\"><span>See the configuration page</span></a> for ways you can do this.</p>\n</div>\n",
- "link": "https://docs.getsentry.com/clients/java/modules/jul/",
- "id": "java-logging",
- "name": "java.util.logging"
- }
|