2328: fix log.Warning bug
authorTim Pierce <twp@curoverse.com>
Wed, 14 May 2014 17:02:30 +0000 (13:02 -0400)
committerTim Pierce <twp@curoverse.com>
Wed, 14 May 2014 17:02:30 +0000 (13:02 -0400)
oops.

services/keep/src/keep/keep.go

index 61072b87fd9e6805f675fb0bb5baf456793829e5..7c4173707a7e4ea87e8c0892d047ba1b542e7faf 100644 (file)
@@ -220,10 +220,10 @@ func main() {
                if enforce_permissions {
                        log.Fatal("--enforce-permissions requires a permission key")
                } else {
-                       log.Warning("Running without a PermissionSecret. Block locators " +
+                       log.Println("Running without a PermissionSecret. Block locators " +
                                "returned by this server will not be signed, and will be rejected " +
                                "by a server that enforces permissions.")
-                       log.Warning("To fix this, run Keep with --permission-key-file=<path> " +
+                       log.Println("To fix this, run Keep with --permission-key-file=<path> " +
                                "to define the location of a file containing the permission key.")
                }
        }