├── .gitignore ├── LICENSE ├── README.md ├── logger.py ├── screenshots └── logs.png ├── su.py └── test.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoic1979/PyLogger/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoic1979/PyLogger/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoic1979/PyLogger/HEAD/README.md -------------------------------------------------------------------------------- /logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoic1979/PyLogger/HEAD/logger.py -------------------------------------------------------------------------------- /screenshots/logs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoic1979/PyLogger/HEAD/screenshots/logs.png -------------------------------------------------------------------------------- /su.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoic1979/PyLogger/HEAD/su.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stoic1979/PyLogger/HEAD/test.py --------------------------------------------------------------------------------