Skip to content

Commit 1cd789c

Browse files
committed
Improve log message
1 parent 3080a31 commit 1cd789c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cli/python.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ func findPythonClass(module, name string) (interface{}, error) {
230230
// to be able to format it. In many cases though (e.g. dataclasses),
231231
// it's sufficient to collect and format the module/name of the class,
232232
// and then data that arrives through PyDictSettable interface.
233-
slog.Debug("parsing Python value", "module", module, "name", name)
233+
slog.Debug("deserializing Python class", "module", module, "name", name)
234234
return &genericClass{&types.GenericClass{Module: module, Name: name}}, nil
235235
}
236236

0 commit comments

Comments
 (0)