]> git.mxchange.org Git - pizzaservice-core.git/commitdiff
minor: improved message, foundContact is the right variable name
authorRoland Häder <roland@mxchange.org>
Tue, 9 Aug 2016 13:43:08 +0000 (15:43 +0200)
committerRoland Haeder <roland@mxchange.org>
Tue, 16 Aug 2016 17:22:45 +0000 (19:22 +0200)
src/org/mxchange/pizzaaplication/database/BasePizzaDatabaseBean.java

index 7d0dd7c7031bc0cabb859e64fba057570e1c95ec..38159868f14e11e9844f62530d100e09f9db197a 100644 (file)
@@ -334,7 +334,7 @@ public abstract class BasePizzaDatabaseBean extends BaseDatabaseBean {
                assert (foundContact instanceof Contact) : MessageFormat.format("Contact with id {0} not found, but should be.", contact.getContactId()); //NOI18N
 
                // Debug message
-               this.getLoggerBeanLocal().logDebug(MessageFormat.format("updateUserPersonalData: contact.contactId={0}", foundContact.getContactId())); //NOI18N
+               this.getLoggerBeanLocal().logDebug(MessageFormat.format("updateUserPersonalData: foundContact.contactId={0}", foundContact.getContactId())); //NOI18N
 
                // Merge contact instance
                Contact detachedContact = this.getEntityManager().merge(foundContact);