Skip to content

Commit

Permalink
修复java.io.NotSerializableException
Browse files Browse the repository at this point in the history
  • Loading branch information
ysc authored and ysc committed Mar 21, 2013
1 parent a5cd142 commit 5a18c78
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package com.apdplat.platform.log;

import java.io.Serializable;
import java.util.Locale;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
Expand All @@ -10,7 +11,7 @@
* Log output switching solutions support multiple languages
* @author ysc
*/
public class APDPlatLogger implements Logger{
public class APDPlatLogger implements Logger,Serializable{
private static Locale configLanguage = null;
private Logger log = null;

Expand Down

0 comments on commit 5a18c78

Please sign in to comment.