LogMethod

@Target(allowedTargets = [AnnotationTarget.FUNCTION])
annotation class LogMethod

The LogMethod annotation is used to mark a method as needing logging. When this annotation is applied to a method, it indicates that the method should log its execution.

This annotation can be useful for adding logging to methods without modifying their implementation directly. By simply annotating the method with @LogMethod, the logging behavior can be added externally.

The LogMethod annotation should be used for informational purposes only and does not affect the behavior of the annotated method itself.