8 Aug
2002
8 Aug
'02
7:31 p.m.
Gustavo M. Palomares Reyes writes:
... ZEO server and ZEO client die ... File "/usr/local/Zope/lib/python/ZEO/ClientStorage.py", line 143, in notifyConnected LOG("ClientStorage", INFO, "Connected to storage") TypeError: object of type 'None' is not callable Sad, "LOG" is still "None".
I fear, you will need some debugging and check why "LOG" is 'None'. The problem is detected in "ClientStorage.py, line 143". Start there. Check, where "LOG" is imported from. See, how it is supposed to be initialized. Check, why it is not. You can use "print" statements or use the "pdb" debugger (which is not very nice). More advanced debuggers come, e.g., with WingIDE (but this costs something). Dieter