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
Updated by Shuvam Misra about 1 year ago
- Target version changed from Sprint 29 Mar to Sprint 12 Apr
Updated by Sachin Divekar about 1 year ago
- % Done changed from 0 to 100
- Status changed from In Progress to Testing
Updated DebugInfo writing function to convert the value of data field to string before writing the log. Like Change log it also uses convertToString()
from utils.go.