[JBoss JIRA] Created: (SEAMPERSIST-43) Remove slf4j usage
by Jozef Hartinger (JIRA)
Remove slf4j usage
------------------
Key: SEAMPERSIST-43
URL: https://issues.jboss.org/browse/SEAMPERSIST-43
Project: Seam Persistence
Issue Type: Task
Affects Versions: 3.0.0.CR4
Reporter: Jozef Hartinger
Assignee: Shane Bryzak
Priority: Blocker
Fix For: 3.0.0.Final
./impl/src/main/java/org/jboss/seam/security/management/IdmAuthenticator.java
./impl/src/main/java/org/jboss/seam/security/permission/PermissionManager.java
./impl/src/main/java/org/jboss/seam/security/permission/JpaPermissionStore.java
./impl/src/main/java/org/jboss/seam/security/permission/SecurityRuleProducer.java
./impl/src/main/java/org/jboss/seam/security/IdentityImpl.java
./impl/src/main/java/org/jboss/seam/security/jaas/JaasAuthenticator.java
./external/src/test/java/org/jboss/seam/security/externaltest/integration/client/IntegrationTest.java
./external/src/main/java/org/jboss/seam/security/external/saml/SamlSignatureUtilForPostBinding.java
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
15 years
[JBoss JIRA] Created: (SOLDER-82) Allow category for typed loggers to be defaulted
by Dan Allen (JIRA)
Allow category for typed loggers to be defaulted
------------------------------------------------
Key: SOLDER-82
URL: https://issues.jboss.org/browse/SOLDER-82
Project: Seam Solder
Issue Type: Enhancement
Components: Logging
Affects Versions: 3.0.0.CR2
Reporter: Dan Allen
Priority: Minor
Fix For: 3.0.0.Final
Currently, the category must be specified at the injection point of a typed logger.
throw new IllegalStateException("Must specify @Category or @TypedCategory for typed loggers at [" + injectionPoint + "]");
This is too restrictive. It's well established that if a category is not specified, it should default to the fully-qualified name of the containing class. This should be permitted:
package com.acme;
public class MyService {
@Inject
private ServiceLogger log;
}
The category would be set to com.acme.MyService
--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira
15 years