Skip to content

Commit

Permalink
fix: correct formatting of status print (#206)
Browse files Browse the repository at this point in the history
  • Loading branch information
garethgeorge authored Jun 26, 2023
1 parent b454f0c commit b16760a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion funcframework/framework.go
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ func initServer() (*http.ServeMux, error) {
func wrapFunction(fn *registry.RegisteredFunction) (http.Handler, error) {
// Check if we have a function resource set, and if so, log progress.
if os.Getenv("FUNCTION_TARGET") == "" {
fmt.Printf("Serving function: %q", fn.Name)
fmt.Printf("Serving function: %q\n", fn.Name)
}

if fn.HTTPFn != nil {
Expand Down

0 comments on commit b16760a

Please sign in to comment.