Task #18073
Go lib: change types of DebugInfo data structure
Start date:
Due date:
29/03/2024
% Done:
100%
Estimated time:
Description
The DebugInfo data structure currently is
type DebugInfo struct { Pid int `json:"pid"` Runtime string `json:"runtime"` FileName string `json:"file"` LineNumber int `json:"line"` FunctionName string `json:"func"` StackTrace string `json:"stackTrace"` Data map[string]any `json:"data"` }
The Data
needs to become map[string]string