mirror of
https://github.com/bwssytems/ha-bridge.git
synced 2025-12-16 18:24:36 +00:00
Bug: Non-transient non-serializable instance fields in serializable
class com.bwssystems.logservices.LoggingForm
This commit is contained in:
@@ -1,5 +1,7 @@
|
||||
package com.bwssystems.logservices;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
import com.bwssystems.logservices.LoggingUtil.LogLevels;
|
||||
|
||||
/**
|
||||
@@ -7,7 +9,10 @@ import com.bwssystems.logservices.LoggingUtil.LogLevels;
|
||||
*
|
||||
*
|
||||
*/
|
||||
public class LoggerInfo {
|
||||
public class LoggerInfo implements Serializable {
|
||||
|
||||
/** serialVersionUID. */
|
||||
private static final long serialVersionUID = 1085935297588739585L;
|
||||
|
||||
private String loggerName;
|
||||
private LogLevels logLevel;
|
||||
|
||||
Reference in New Issue
Block a user