mirror of
https://github.com/gyurix1968/guacamole-client.git
synced 2025-09-06 13:17:41 +00:00
GUACAMOLE-1218: Use static instances of Logger per established coding practices.
This commit is contained in:
@@ -36,7 +36,7 @@ public class RequestValidationService {
|
||||
/**
|
||||
* Logger for this class.
|
||||
*/
|
||||
private final Logger logger = LoggerFactory.getLogger(RequestValidationService.class);
|
||||
private static final Logger logger = LoggerFactory.getLogger(RequestValidationService.class);
|
||||
|
||||
/**
|
||||
* Service for retrieving configuration information regarding the
|
||||
|
@@ -56,7 +56,7 @@ public class ConnectionService {
|
||||
/**
|
||||
* Logger for this class.
|
||||
*/
|
||||
private final Logger logger = LoggerFactory.getLogger(ConnectionService.class);
|
||||
private static final Logger logger = LoggerFactory.getLogger(ConnectionService.class);
|
||||
|
||||
/**
|
||||
* The Guacamole server environment.
|
||||
|
@@ -38,7 +38,7 @@ public class UserDataDenylist {
|
||||
/**
|
||||
* Logger for this class.
|
||||
*/
|
||||
private final Logger logger = LoggerFactory.getLogger(UserDataDenylist.class);
|
||||
private static final Logger logger = LoggerFactory.getLogger(UserDataDenylist.class);
|
||||
|
||||
/**
|
||||
* All denylisted UserData objects, stored by their associated
|
||||
|
@@ -56,7 +56,7 @@ public class UserDataService {
|
||||
/**
|
||||
* Logger for this class.
|
||||
*/
|
||||
private final Logger logger = LoggerFactory.getLogger(UserDataService.class);
|
||||
private static final Logger logger = LoggerFactory.getLogger(UserDataService.class);
|
||||
|
||||
/**
|
||||
* ObjectMapper for deserializing UserData objects.
|
||||
|
Reference in New Issue
Block a user