Bug 846628
| Summary: | Use of non-standard log names should be changed or documented | ||||||
|---|---|---|---|---|---|---|---|
| Product: | [JBoss] JBoss Enterprise Portal Platform 5 | Reporter: | Martin Weiler <mweiler> | ||||
| Component: | Portal | Assignee: | Nobody <nobody> | ||||
| Status: | CLOSED UPSTREAM | QA Contact: | |||||
| Severity: | medium | Docs Contact: | |||||
| Priority: | medium | ||||||
| Version: | 5.2.1.GA | CC: | epp-bugs, nobody | ||||
| Target Milestone: | --- | ||||||
| Target Release: | --- | ||||||
| Hardware: | Unspecified | ||||||
| OS: | Unspecified | ||||||
| Whiteboard: | |||||||
| Fixed In Version: | Doc Type: | Bug Fix | |||||
| Doc Text: | Story Points: | --- | |||||
| Clone Of: | Environment: | ||||||
| Last Closed: | 2025-02-10 03:20:28 UTC | Type: | Enhancement | ||||
| Regression: | --- | Mount Type: | --- | ||||
| Documentation: | --- | CRM: | |||||
| Verified Versions: | Category: | --- | |||||
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |||||
| Cloudforms Team: | --- | Target Upstream Version: | |||||
| Embargoed: | |||||||
| Attachments: |
|
||||||
Created attachment 602999 [details]
List of several classes with non-standard log names
This product has been discontinued or is no longer tracked in Red Hat Bugzilla. |
Description of problem: There are several non-standard log names that are not documented. For example, in the PortalApplication class, the logger is defined as: protected static Log log = ExoLogger.getLogger("portal:PortalApplication"); instead of something more standard such as: protected static Log log = ExoLogger.getLogger(PortalApplication.class); These non-standard log names should be changed to the standard naming conventions, or documented somewhere so that developers are able to use logging effectively.