Merge branch '18947-githttpd'
[arvados.git] / lib / crunchrun / crunchrun.go
index 6ac7a5f0cc0931369ac9bd869b7e1dcda3883f0a..474fbf4ade16cb6e6b0894ea7bb47524ac0eef09 100644 (file)
@@ -2001,14 +2001,15 @@ func loadClusterConfigFile(path string, stderr io.Writer) *arvados.Cluster {
        ldr.Path = path
        cfg, err := ldr.Load()
        if err != nil {
-               fmt.Fprintf(stderr, "could not load config file %s: %s", path, err)
+               fmt.Fprintf(stderr, "could not load config file %s: %s\n", path, err)
                return nil
        }
        cluster, err := cfg.GetCluster("")
        if err != nil {
-               fmt.Fprintf(stderr, "could not use config file %s: %s", path, err)
+               fmt.Fprintf(stderr, "could not use config file %s: %s\n", path, err)
                return nil
        }
+       fmt.Fprintf(stderr, "loaded config file %s\n", path)
        return cluster
 }