From f6548791957a00d22c528357d3334aed652d9edc Mon Sep 17 00:00:00 2001 From: Dalton Hubble Date: Tue, 26 Apr 2016 13:12:06 -0700 Subject: [PATCH] bootcfg/http: Fix http package log messages * Package bootcfg/http logs show "api" which was the old package name --- bootcfg/http/server.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootcfg/http/server.go b/bootcfg/http/server.go index 275f28e9..113a60c8 100644 --- a/bootcfg/http/server.go +++ b/bootcfg/http/server.go @@ -10,7 +10,7 @@ import ( "github.com/coreos/coreos-baremetal/bootcfg/storage" ) -var log = capnslog.NewPackageLogger("github.com/coreos/coreos-baremetal/bootcfg", "api") +var log = capnslog.NewPackageLogger("github.com/coreos/coreos-baremetal/bootcfg", "http") // Config configures the api Server. type Config struct {