Roberto Sánchez
2014-09-18 e1743c557079051217d1e65901f4ae9f9dad7d00
src/main/java/net/curisit/securis/LicenseValidator.java
....@@ -17,13 +17,13 @@
1717 private static final Logger log = LogManager.getLogger(LicenseValidator.class);
1818
1919 public static LicenseValidator singleton = new LicenseValidator();
20
- private byte[] LOGO_SECRET;
20
+ public static byte[] LOGO_SECRET;
2121
2222 private LicenseValidator() {
2323 try {
2424 LOGO_SECRET = "Logo ipsum s3cr3t test áíóú".getBytes("utf-8");
2525 } catch (UnsupportedEncodingException e) {
26
- e.printStackTrace();
26
+ log.error("Unexpected error getting LOGO secret", e);
2727 }
2828 }
2929