I\'m trying to print the name of the current class in Swift. More specifically, I\'d like achieve the following output:
myFunction() in ClassContainingTheFun
My short answer is,
print(" Function name : \(#function), Class Name : \(self.dynamicType), File Path : \(#file)")