summaryrefslogtreecommitdiff
path: root/importDomain.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-11-01 00:41:00 -0500
committerJeff Carr <[email protected]>2024-11-01 00:41:00 -0500
commitc1d86fc324671995ee6dc279c7568bceda1cc910 (patch)
treeb7ba69757e251da753780cf6a8a8b1e8e60a2d75 /importDomain.go
parent26cd0f7709ba552b98aeee83723612eb5e7009cb (diff)
common d.SprintHeader() functions for humans
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'importDomain.go')
-rw-r--r--importDomain.go4
1 files changed, 3 insertions, 1 deletions
diff --git a/importDomain.go b/importDomain.go
index ffc0614..c50ef60 100644
--- a/importDomain.go
+++ b/importDomain.go
@@ -41,7 +41,9 @@ func importDomain(w http.ResponseWriter, r *http.Request) (string, error) {
fmt.Fprintln(w, result)
return result, nil
}
- result := start + " local ready to import from hypervisor"
+ result := start + "about to attempt import "
+ result += "(" + d.LocalOnly + ")"
+ result += " " + d.Hostname
log.Log(WARN, result)
fmt.Fprintln(w, result)
return result, nil