0
bill created
I have created some application services, which extends Abp ApplicationService. some methods are marked with AbpAuthorize attribute. also I have codes to enable audit log for both authorized & anonymous request.
Configuration.Auditing.IsEnabledForAnonymousUsers = true;
Configuration.Auditing.Selectors.Add(
new NamedTypeSelector(
"Abp.ApplicationServices",
type => typeof(IApplicationService).IsAssignableFrom(type)
)
);
I found the audit log has not been recorded in database if the validation or authorization failed.
any comment about it?
2 Answer(s)
-
0
Hi,
I know the issue: <a class="postlink" href="https://github.com/aspnetboilerplate/aspnetboilerplate/issues/516">https://github.com/aspnetboilerplate/as ... issues/516</a> It will be fixed in next version.
Thanks.
-
0
thanks for your response. :)