I have a python logging object type for e.g: <logging.Logger object at 0x00000000028AA0F0>
that is written in a text file and I am trying to convert that string into that same instance.
Note that this instance has already been created by the same program in the same computer. So how do you think I should turn that string into an object, so that I can reuse all its features.
Note: This is not a class object, it is a logging type object so I am guessing that makes a difference. I tried solving it by trying to convert it into a class object but I got an error that AttributeError: 'module' object has no attribute '<logging.Logger object at 0x00000000028AA0F0>
.