Access additional value from a custom annotation in page factory model

Let’s say I have the following Page Factory based code

@AndroidFindBy(id = "cancel_action")
@CustomLog("Cancel Button")
public MobileElement btnCancel;

Now if I want to access the Custom Annotation (@CustomLog) value which is “Cancel Button” in my test is it possible? I created an annotation called “CustomLog” But how do I access the value of this annotation as part of this MobileElement