Index: trunk/Nebulous-Server/lib/Nebulous/Server.pm
===================================================================
--- trunk/Nebulous-Server/lib/Nebulous/Server.pm	(revision 17680)
+++ trunk/Nebulous-Server/lib/Nebulous/Server.pm	(revision 17687)
@@ -1,5 +1,5 @@
 # Copyright (c) 2004-2008  Joshua Hoblitt
 #
-# $Id: Server.pm,v 1.68 2008-05-14 22:25:00 jhoblitt Exp $
+# $Id: Server.pm,v 1.69 2008-05-15 00:36:41 jhoblitt Exp $
 
 package Nebulous::Server;
@@ -466,9 +466,9 @@
             # can't set a write lock if there are read locks
             if ($write_lock) {
-                $log->logdie("can not write lock twice");
+                $log->logdie("can not write lock twice -- retry");
             }
             
             if ($read_lock > 0) {
-                $log->logdie("can not write lock after read lock");
+                $log->logdie("can not write lock after read lock -- retry");
             }
 
@@ -486,5 +486,5 @@
             # can't set a read lock if there's a write lock
             if ($write_lock) {
-                $log->logdie("can not read lock after write lock");
+                $log->logdie("can not read lock after write lock -- retry");
             }
 
