Not the function, no, but the file name could be included like this:
println(@__FILE__, ":", @__LINE__)
It would be possible to have a similar @__FUNCTION__ macro. Implementing it would require tracking the name of the function that is currently being defined in the parser. And of course, one must keep in mind inner functions so technically there is a stack of function names that are currently being defined at any point in code.