File tree Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -383,6 +383,12 @@ message RpcLog {
383383 None = 6 ;
384384 }
385385
386+ // Category of the log. Defaults to User if not specified.
387+ enum RpcLogCategory {
388+ User = 0 ;
389+ System = 1 ;
390+ }
391+
386392 // Unique id for invocation (if exists)
387393 string invocation_id = 1 ;
388394
@@ -404,6 +410,9 @@ message RpcLog {
404410
405411 // json serialized property bag, or could use a type scheme like map<string, TypedData>
406412 string properties = 7 ;
413+
414+ // Category of the log. Either user(default) or system.
415+ RpcLogCategory log_category = 8 ;
407416}
408417
409418// Encapsulates an Exception
@@ -414,7 +423,7 @@ message RpcException {
414423 // Stack trace for the exception
415424 string stack_trace = 1 ;
416425
417- // Textual message describing hte exception
426+ // Textual message describing the exception
418427 string message = 2 ;
419428}
420429
You can’t perform that action at this time.
0 commit comments