]> git.mxchange.org Git - jjobs-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 18:14:44 +0000 (20:14 +0200)
src/org/mxchange/jjobs/database/BaseJobsDatabaseBean.java

index 07ba14e52a58cfca6a8321dd35e40059adba7dad..6908a841b4af0862b6c300e9db13b0fdd3e4ed5a 100644 (file)
@@ -334,7 +334,7 @@ public abstract class BaseJobsDatabaseBean 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);