I am looking in some legacy code in Scala and see a method:
private def method1 (value: AnyRef, fieldName: String, qualifiedFieldName: String, fieldType: Type, schema: Schema)
(implicit mode: ParseMode): Any = {...}
How to see who called (or who can call) this method (from where)? (tracking in IDE/InteliJ is fine - just want to 'track' who is calling a method in order to understand the code routes)..
Ideal print line
right after a Method name (inside method body) would be:
This method is being called from this class etc...