Skip to content

Commit

Permalink
Make logger static
Browse files Browse the repository at this point in the history
Signed-off-by: tvallin <thibault.vallin@oracle.com>
  • Loading branch information
tvallin authored and senivam committed Jan 8, 2021
1 parent 8fd99cf commit a1860e9
Showing 1 changed file with 2 additions and 2 deletions.
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2017, 2018 Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2017, 2021 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0, which is available at
Expand Down Expand Up @@ -42,7 +42,7 @@ public org.glassfish.jersey.process.internal.RequestContext createContext() {
*/
public static final class Instance implements org.glassfish.jersey.process.internal.RequestContext {

private final ExtendedLogger logger = new ExtendedLogger(Logger.getLogger(Instance.class.getName()), Level.FINEST);
private static final ExtendedLogger logger = new ExtendedLogger(Logger.getLogger(Instance.class.getName()), Level.FINEST);

/*
* Scope instance UUID.
Expand Down

0 comments on commit a1860e9

Please sign in to comment.