From 3fbd5f4993bab4b36f274f3d981441c00a4c4c9d Mon Sep 17 00:00:00 2001 From: Michael Bayne Date: Thu, 20 Oct 2011 20:10:59 +0000 Subject: [PATCH] Made log message less terrifying. I don't like to see the words "Aborting creation." when I'm in the middle of creating databases. If we're not creating the index, fine, but don't give me the idea that we're aborting the entire creation of the table. --- src/main/java/com/samskivert/depot/impl/BuildVisitor.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/samskivert/depot/impl/BuildVisitor.java b/src/main/java/com/samskivert/depot/impl/BuildVisitor.java index 8fe0fce..256d359 100644 --- a/src/main/java/com/samskivert/depot/impl/BuildVisitor.java +++ b/src/main/java/com/samskivert/depot/impl/BuildVisitor.java @@ -490,7 +490,7 @@ public abstract class BuildVisitor implements FragmentVisitor if (!_allowComplexIndices) { for (Tuple, Order> field : createIndexClause.getFields()) { if (!(field.left instanceof ColumnExp)) { - log.warning("This database can't handle complex indexes. Aborting creation.", + log.warning("This database can't handle complex indexes. Not creating.", "ixName", createIndexClause.getName()); return null; }