Ticket #105 (closed defect: fixed)

Opened 3 months ago

Last modified 3 months ago

logging not working in nest2

Reported by: jie.bao@gmail.com Assigned to: apdavison
Priority: minor Milestone: Release 0.5.0
Component: nest2 Version: trunk
Keywords: logging, nest2 Cc:

Description

Now pyNN does not write a 'nest.log' file anymore, which is supposed to contain all useful debug information and stuff. However, commenting out line 316 in nest2/__init__.py

logging.debug("rng_seeds = %s" % rng_seeds)

does the trick. Any comments?

Change History

07/16/08 10:43:19 changed by apdavison

  • status changed from new to closed.
  • resolution set to fixed.
  • milestone set to Release 0.5.0.

Fixed in r416. The logging statement on line 316 occurred before the log file had been setup, so the solution was to move logging setup to earlier in the function.