]> git.mxchange.org Git - addressbook-ejb.git/blobdiff - src/java/org/mxchange/jcountry/model/data/AddressbookAdminCountrySingletonBean.java
Please cherry-pick:
[addressbook-ejb.git] / src / java / org / mxchange / jcountry / model / data / AddressbookAdminCountrySingletonBean.java
index 95d92ff080625da00128b58201267416924e1fd5..7bf94a715a8099c3a41cc7323fa911e3f20a7088 100644 (file)
@@ -102,11 +102,17 @@ public class AddressbookAdminCountrySingletonBean extends BaseAddressbookEnterpr
         * @return Whether the country was found
         */
        private boolean isCountryAdded (final Country country) {
+               // Trace message
+               this.getLoggerBeanLocal().logTrace(MessageFormat.format("{0}.isCountryAdded: country={1} - CALLED!", this.getClass().getSimpleName(), country)); //NOI18N
+
                // Default is not found
                boolean isAdded = false;
 
                // Try to match code/i18n key (should be both unique!)
                for (final Country currentCountry : this.countryBean.fetchAllCountries()) {
+                       // Debug message
+                       this.getLoggerBeanLocal().logDebug(MessageFormat.format("{0}.isCountryAdded: country={1},currentCountry={2}", this.getClass().getSimpleName(), country, currentCountry)); //NOI18N
+
                        // Is it matching
                        if (Objects.equals(country, currentCountry)) {
                                // Yes, then set flag and abort loop
@@ -115,6 +121,9 @@ public class AddressbookAdminCountrySingletonBean extends BaseAddressbookEnterpr
                        }
                }
 
+               // Trace message
+               this.getLoggerBeanLocal().logTrace(MessageFormat.format("{0}.isCountryAdded: isAdded={1} - CALLED!", this.getClass().getSimpleName(), isAdded)); //NOI18N
+
                // Return result
                return isAdded;
        }