2
0
mirror of https://frontier.innolan.net/github/amigaos-cross-toolchain6.git synced 2024-10-19 10:29:55 +00:00

Add individual loggers for each module.

This commit is contained in:
Krystian Bacławski
2013-07-20 13:27:34 +02:00
parent 9585396803
commit 1263e5ff7c
6 changed files with 61 additions and 20 deletions

View File

@ -1,10 +1,14 @@
#!/usr/bin/env python2.7 -B
import logging
import sys
from objtools import ar
if __name__ == '__main__':
logging.basicConfig()
for path in sys.argv[1:]:
print '%s:' % path
for num, entry in enumerate(ar.ReadFile(path), start=1):