]> git.mxchange.org Git - jbonuscard-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:23:39 +0000 (19:23 +0200)
src/org/mxchange/addressbook/database/BaseAddressbookDatabaseBean.java

index d404157dac0032cfd7b5e7d0e9d47e6d53864ba6..dd8bd9eb106f33690bb4f7c2969810e401353eda 100644 (file)
@@ -334,7 +334,7 @@ public abstract class BaseAddressbookDatabaseBean 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);