Commit edb693988a6f98d667919cfff3580799918144e4

Authored by Perry Werneck
1 parent 3162c84e
Exists in master

Removing some debug messages.

src/terminal/attributes.cc
... ... @@ -38,7 +38,7 @@
38 38  
39 39 PyObject * py3270_session_getter(PyObject *self, void *name) {
40 40  
41   - debug("%s(%s)",__FUNCTION__,(const char *) name);
  41 +// debug("%s(%s)",__FUNCTION__,(const char *) name);
42 42  
43 43 return py3270_session_call(self, [name](TN3270::Host &host){
44 44  
... ...
src/terminal/init.cc
... ... @@ -61,7 +61,7 @@ void py3270_session_type_init(PyTypeObject *type) {
61 61 size_t ix = 0;
62 62 for(auto attribute : attributes) {
63 63  
64   - debug("Creating attribute %s",attribute->name);
  64 +// debug("Creating attribute %s",attribute->name);
65 65  
66 66 type->tp_getset[ix].name = (char *) attribute->name;
67 67 type->tp_getset[ix].doc = (char *) (attribute->description ? attribute->description : attribute->summary);
... ...