From 24ac6db16cfa57802be389384cb781bde96599f6 Mon Sep 17 00:00:00 2001 From: mdb Date: Sun, 18 Feb 2007 21:41:20 +0000 Subject: [PATCH] More informative error message. git-svn-id: https://samskivert.googlecode.com/svn/trunk@2049 6335cc39-0255-0410-8fd6-9bcaacd3b74c --- src/java/com/samskivert/jdbc/depot/EntityMigration.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/java/com/samskivert/jdbc/depot/EntityMigration.java b/src/java/com/samskivert/jdbc/depot/EntityMigration.java index 197eaa26..c33f7018 100644 --- a/src/java/com/samskivert/jdbc/depot/EntityMigration.java +++ b/src/java/com/samskivert/jdbc/depot/EntityMigration.java @@ -50,7 +50,7 @@ public abstract class EntityMigration extends Modifier public int invoke (Connection conn) throws SQLException { if (!JDBCUtil.tableContainsColumn(conn, _tableName, _columnName)) { // we'll accept this inconsistency - log.warning("Column drop appears already performed."); + log.warning(_tableName + "." + _columnName + " already dropped."); return 0; }