https://github.com/artdaw/activeweb-logging
ActiveWeb Framework logger
https://github.com/artdaw/activeweb-logging
Last synced: 4 months ago
JSON representation
ActiveWeb Framework logger
- Host: GitHub
- URL: https://github.com/artdaw/activeweb-logging
- Owner: artdaw
- Created: 2012-07-13T14:32:21.000Z (almost 13 years ago)
- Default Branch: master
- Last Pushed: 2012-07-13T16:02:18.000Z (almost 13 years ago)
- Last Synced: 2025-01-22T04:31:08.779Z (5 months ago)
- Language: Java
- Size: 109 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ActiveWeb Logging package #
### Installation ###
1. add dependency to your `pom.xml`:
org.javalite
activeweb-logging
1.0-SNAPSHOT
2. add repository where activeweb-logging is placed:
artdaw-snapshots
https://github.com/artdaw/m2/raw/master/snapshots
3. in your Guice module bind `LoggerTypeListener`:
bindListener(Matchers.any(), new LoggerTypeListener());
4. Profit! Use @InjectLogger as follows:
@InjectLogger
private static Logger logger;