Skip to content

Commit 4f948db

Browse files
author
“Lauris
committed
Fixes on logging
1 parent 648f9b1 commit 4f948db

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/expyld

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -327,7 +327,7 @@ static int ndrxpy_resolve(char *module, const char **data, ssize_t *dlen)
327327
static __thread ssize_t cache_dlen=0;
328328
static __thread int cache_ret=NDRXPY_RES_NOMOD;
329329
330-
fprintf(stderr, "mod=[%s]\n", module);
330+
/* fprintf(stderr, "mod=[%s]\n", module); */
331331
#define DO_CACHE(MOD) NDRX_STRCPY_SAFE(cache_module, MOD); cache_data=*data; cache_dlen=*dlen; cache_ret=ret;
332332
/*
333333
* Steps:
@@ -510,7 +510,7 @@ PyObject* find_module(PyObject* self, PyObject* args)
510510
goto out;
511511
}
512512
513-
fprintf(stderr, "module to find [%s]\n", module);
513+
/* fprintf(stderr, "module to find [%s]\n", module); */
514514
ok=0;
515515
if (ndrxpy_resolve(module, &mdata, &dlen)==NDRXPY_RES_NOMOD)
516516
{

0 commit comments

Comments
 (0)