Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(spanner): use correct logger when stopping emulator
Fixes a bug introduced in b1b5e7e (PR #594) where an empty context is used, which removes the logger. Could be done cleaner with Go >=1.21 as can be seen in a TODO comment. Before: ``` ❯ make go-test [sage] building binary and generating Makefiles... [go-test] running Go tests... [go-test] starting Cloud Spanner emulator... [go-test] running Cloud Spanner emulator on 0.0.0.0:44611 [sage] stopping down Cloud Spanner emulator... ``` After: ``` ❯ make go-test [sage] building binary and generating Makefiles... [go-test] running Go tests... [go-test] starting Cloud Spanner emulator... [go-test] running Cloud Spanner emulator on 0.0.0.0:46023 [go-test] stopping down Cloud Spanner emulator... ```