Skip to content

Commit a2a87b5

Browse files
committed
feat: adjusted logs to include parameter
1 parent 5241342 commit a2a87b5

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

proto/sagittarius/sagittarius.text_execution.proto

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,15 @@ message Log {
3232
message SuccessLog {
3333
int64 note_id = 1;
3434
shared.Value result = 2;
35+
repeated shared.Value parameter = 3;
36+
string timestamp = 4;
3537
}
3638

3739
message RuntimeErrorLog {
3840
int64 note_id = 1;
39-
string error_code = 2;
40-
string error_message = 3;
41-
optional string suggestion = 4;
41+
string error = 2;
42+
repeated shared.Value parameter = 3;
43+
string timestamp = 4;
4244
}
4345

4446
message ApplicationLog {

0 commit comments

Comments
 (0)