Skip to content

Commit 59744a8

Browse files
committed
fix wrong level
1 parent 385f06a commit 59744a8

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

livekit-ffi/protocol/ffi.proto

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -177,11 +177,11 @@ message DisposeCallback {
177177
}
178178

179179
enum LogLevel {
180-
LOG_ERROR = 1;
181-
LOG_WARN = 3;
182-
LOG_INFO = 4;
183-
LOG_DEBUG = 5;
184-
LOG_TRACE = 6;
180+
LOG_ERROR = 0;
181+
LOG_WARN = 1;
182+
LOG_INFO = 2;
183+
LOG_DEBUG = 3;
184+
LOG_TRACE = 4;
185185
}
186186

187187
message LogRecord {

0 commit comments

Comments
 (0)