Project

General

Profile

Task #18073

Go lib: change types of DebugInfo data structure

Added by Shuvam Misra about 1 year ago. Updated about 1 year ago.

Status:
Closed
Priority:
Normal
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

#1

Updated by Shuvam Misra about 1 year ago

  • Target version changed from Sprint 29 Mar to Sprint 12 Apr
#2

Updated by Sachin Divekar about 1 year ago

  • Status changed from New to In Progress
#3

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.

#4

Updated by Sachin Divekar about 1 year ago

  • Status changed from Testing to Closed

Also available in: Atom PDF