GitHub repository with your minimal reproducible example (do not leave this field blank or fill out this field with "github.com/bufbuild/buf" or we will automatically close your issue, see the instructions above!)
No response
What's up?
The change in https://github.com/bufbuild/buf/pull/3374 removed tracing, which we used for all RPC debug logs.
Below is a comparison of the difference between before and after for debug logs:
$ /Users/dkeung/.cache/buf/Darwin/arm64/gobin/buf push --debug
DEBUG buffetch termination found {"curDirPath": "Users/dkeung/src/playground/a", "path": "Users/dkeung/src/playground/a"}
DEBUG buffetch termination found {"curDirPath": ".", "path": "."}
DEBUG targeting workspace based on v2 buf.yaml {"subDirPath": "."}
DEBUG github.com/bufbuild/buf/private/buf/bufworkspace.(*workspaceProvider).getWorkspaceForBucketBufYAMLV2 {"duration": "10.25µs"}
DEBUG github.com/bufbuild/buf/private/buf/bufctl.(*controller).getWorkspaceForSourceRef {"duration": "291.75µs"}
DEBUG module data store dir read write bucket {"moduleFullName": "buf.build/googleapis/googleapis", "commitID": "c0913f24652a4cfc95f77d97443a5005", "dirPath": "b5/buf.build/googleapis/googleapis/c0913f24652a4cfc95f77d97443a5005"}
DEBUG module data store get module.yaml {"moduleFullName": "buf.build/googleapis/googleapis", "commitID": "c0913f24652a4cfc95f77d97443a5005", "found": false, "error": "stat b5/buf.build/googleapis/googleapis/c0913f24652a4cfc95f77d97443a5005/module.yaml: file does not exist"}
DEBUG module data store dir read write bucket {"moduleFullName": "buf.build/googleapis/googleapis", "commitID": "c0913f24652a4cfc95f77d97443a5005", "dirPath": "b5/buf.build/googleapis/googleapis/c0913f24652a4cfc95f77d97443a5005"}
DEBUG module data store put read check module.yaml {"moduleFullName": "buf.build/googleapis/googleapis", "commitID": "c0913f24652a4cfc95f77d97443a5005", "found": false, "error": "stat b5/buf.build/googleapis/googleapis/c0913f24652a4cfc95f77d97443a5005/module.yaml: file does not exist"}
DEBUG module data store put check module.yaml {"moduleFullName": "buf.build/googleapis/googleapis", "commitID": "c0913f24652a4cfc95f77d97443a5005", "found": false, "error": "stat b5/buf.build/googleapis/googleapis/c0913f24652a4cfc95f77d97443a5005/module.yaml: file does not exist"}
DEBUG module data store dir read write bucket {"moduleFullName": "buf.build/googleapis/googleapis", "commitID": "c0913f24652a4cfc95f77d97443a5005", "dirPath": "b5/buf.build/googleapis/googleapis/c0913f24652a4cfc95f77d97443a5005"}
DEBUG module data store get module.yaml {"moduleFullName": "buf.build/googleapis/googleapis", "commitID": "c0913f24652a4cfc95f77d97443a5005", "found": true}
DEBUG github.com/bufbuild/buf/private/bufpkg/bufimage.BuildImage {"duration": "296.150292ms"}
We no longer get RPC level debug logs. This came up during a debugging session with users, where engineers ended up downgrading the version to get more information. We should figure out how to reintroduce RPC-level debug logs.
GitHub repository with your minimal reproducible example (do not leave this field blank or fill out this field with "github.com/bufbuild/buf" or we will automatically close your issue, see the instructions above!)
No response
What's up?
The change in https://github.com/bufbuild/buf/pull/3374 removed tracing, which we used for all RPC debug logs. Below is a comparison of the difference between before and after for debug logs:
Before:
After:
We no longer get RPC level debug logs. This came up during a debugging session with users, where engineers ended up downgrading the version to get more information. We should figure out how to reintroduce RPC-level debug logs.