File tree Expand file tree Collapse file tree
IntelliJ/src/main/java/com/nuix/javaenginesimple Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -47,14 +47,14 @@ public void acquireAnyLicense() {
4747 * @return True if all requirements met, false if any requirement has not been met.
4848 */
4949 public boolean isValid (AvailableLicence license ) {
50+ logger .info ("Checking License: " +LicenseFeaturesLogger .summarizeLicense (license ));
51+
5052 // A license of this type will throw a null pointer exception due to it having a null workers value
5153 if (license .getShortName ().equalsIgnoreCase ("server" )) {
52- logger .info ("!!! Ignoring 'Nuix Server' license as we cannot claim it for our needs ..." );
54+ logger .info ("!!! Ignoring 'Nuix Server' license as we cannot make use of it ..." );
5355 return false ;
5456 }
5557
56- logger .info ("Checking License: " +LicenseFeaturesLogger .summarizeLicense (license ));
57-
5858 int workerCount = ((LicenceProperties )license ).getWorkers ();
5959
6060 // Verify the minimum worker count
You can’t perform that action at this time.
0 commit comments