Bug: Non-transient non-serializable instance fields in serializable

class com.bwssystems.logservices.LoggingForm
This commit is contained in:
gaudryc
2019-01-06 19:52:55 +01:00
parent d9916b7662
commit 92ab02145e

View File

@@ -1,5 +1,7 @@
package com.bwssystems.logservices; package com.bwssystems.logservices;
import java.io.Serializable;
import com.bwssystems.logservices.LoggingUtil.LogLevels; 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 String loggerName;
private LogLevels logLevel; private LogLevels logLevel;