Added shutdown method to containers.

This commit is contained in:
mikestefanello 2021-12-19 14:56:00 -05:00
parent 85981e75a7
commit 40f0d7251d
5 changed files with 28 additions and 8 deletions

View file

@ -54,7 +54,7 @@ func ServeCachedPage(ch *cache.Cache) echo.MiddlewareFunc {
c.Response().Header().Set(k, v)
}
}
c.Logger().Infof("serving cached page")
c.Logger().Info("serving cached page")
return c.HTMLBlob(page.StatusCode, page.HTML)
}