mirror of
https://github.com/ngrok/ngrok-go.git
synced 2026-05-17 16:50:45 +00:00
84ec657218
The main issue was that we had a mix of spaces and tabs, and that makes yaml parsers unhappy. Before: ``` 2025/06/18 08:40:32 INFO client session established 2025/06/18 08:40:32 The TrafficPolicy you provided is invalid: could not decode from string: The traffic policy was not able to be parsed: yaml: line 4: found a tab character that violates indentation. ``` After: ``` 2025/06/18 08:43:52 INFO client session established 2025/06/18 08:43:52 Endpoint online https://<random>.ngrok.app ``` I also plumbed in slog since otherwise there's no output on errors, which is kinda unsettling.