GoogleCloudPlatform / functions-framework-go

FaaS (Function as a service) framework for writing portable Go functions
https://godoc.org/github.com/GoogleCloudPlatform/functions-framework-go
Apache License 2.0
458 stars 63 forks source link

fix: correct formatting of status print #206

Closed garethgeorge closed 1 year ago

garethgeorge commented 1 year ago

Fixes framework's status print "Serving function: ..." on startup when no target is specified in local dev (allows serving multiple functions from a single instance of function framework). Today the output looks like:

Serving function: "declarativeHTTP"Serving function: "concurrentHTTP"Serving function: "declarativeCloudEvent"

With the fix:

Serving function: "declarativeHTTP"
Serving function: "concurrentHTTP"
Serving function: "declarativeCloudEvent"