Skip to content

Commit 140ccef

Browse files
committed
oops, regen proto
1 parent 2e5d1c4 commit 140ccef

File tree

2 files changed

+43
-21
lines changed

2 files changed

+43
-21
lines changed

progress.pb.go

+37-21
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

progress.proto

+6
Original file line numberDiff line numberDiff line change
@@ -162,6 +162,12 @@ message Message {
162162
// levels in the future, and the enum values are aligned with Go's log/slog
163163
// package.
164164
enum MessageLevel {
165+
// INVALID is not a valid message level. Protobuf requires the first enum
166+
// value to be 0, so here we are.
167+
//
168+
// In the future this _may_ become INFO, which would match Go's log/slog
169+
// package convention, but no promises!
170+
INVALID = 0;
165171
// DEBUG indicates that the message should only be shown if debugging is
166172
// enabled.
167173
DEBUG = -4;

0 commit comments

Comments
 (0)