oops, left this on

This commit is contained in:
Braydon 2023-05-31 01:58:31 -04:00
parent bcbf3ed675
commit 2ff0dc7ff5

@ -43,11 +43,14 @@ public final class LicenseService {
@PostConstruct
public void onInitialize() {
String key = RandomUtils.generateLicenseKey();
log.info(create(key,
"CloudSpigot",
"Testing " + Math.random(), Integer.MAX_VALUE, Integer.MAX_VALUE).toString());
System.out.println("key = " + key);
// TODO: remove this and make it either
// a test, or a route to gen a license
System.out.println("SALT - " + BCrypt.gensalt());
// String key = RandomUtils.generateLicenseKey();
// log.info(create(key,
// "CloudSpigot",
// "Testing " + Math.random(), Integer.MAX_VALUE, Integer.MAX_VALUE).toString());
// System.out.println("key = " + key);
}
/**