src/main/java/net/curisit/securis/LicenseValidator.java
.. .. @@ -17,13 +17,13 @@ 17 17 private static final Logger log = LogManager.getLogger(LicenseValidator.class); 18 18 19 19 public static LicenseValidator singleton = new LicenseValidator(); 20 - private byte[] LOGO_SECRET;20 + public static byte[] LOGO_SECRET;21 21 22 22 private LicenseValidator() { 23 23 try { 24 24 LOGO_SECRET = "Logo ipsum s3cr3t test áíóú".getBytes("utf-8"); 25 25 } catch (UnsupportedEncodingException e) { 26 - e.printStackTrace();26 + log.error("Unexpected error getting LOGO secret", e);27 27 } 28 28 } 29 29