Menu

#1 Way too much logging information?

open
nobody
None
5
2004-04-26
2004-04-26
No

Hey.

If you think there is way to much logging information:
Open src/StandAloneAptGot.java

and change
---
static {
logger = Logger.getLogger("com.debianmirror");
ConsoleHandler ch = new ConsoleHandler();

ch.setLevel(Level.ALL);
logger.addHandler(ch);
logger.setLevel(Level.ALL);
}

---
to
---
static {
logger = Logger.getLogger("com.debianmirror");
ConsoleHandler ch = new ConsoleHandler();

ch.setLevel(Level.CONFIG);
logger.addHandler(ch);
logger.setLevel(Level.ALL);
}
---

If you know about the java.util.logging.* package and
know how to use it - this is the portion to change.

Greets,
T

Discussion


Log in to post a comment.

Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.