Skip to content

Commit

Permalink
Rename logger variable
Browse files Browse the repository at this point in the history
  • Loading branch information
afs committed May 18, 2024
1 parent 5b75897 commit 34be973
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
* for any service.
*/
public class FusekiFilter implements Filter {
private static Logger log = Fuseki.serverLog;
private static final Logger LOG = Fuseki.serverLog;

@Override
public void init(FilterConfig filterConfig) {}
Expand All @@ -50,7 +50,7 @@ public void doFilter(ServletRequest request, ServletResponse response, FilterCha
if ( handled )
return;
} catch (Throwable ex) {
log.info("Filter: unexpected exception: "+ex.getMessage(),ex);
LOG.info("Filter: unexpected exception: "+ex.getMessage(),ex);
}

// Not found - continue.
Expand Down

0 comments on commit 34be973

Please sign in to comment.