fileName | 関数呼び出し元のプログラムファイル名。通常、__FILE__とする。 The name of the program file from which this function was called; usually use __FILE__. |
functionName | 関数呼び出し元の関数名。通常、__FUNCTION__とする。 The name of the function from which this function was called; usually use __FUNCTION__. |
line | 第1引数で指定したファイル内での関数呼び出し元の行番号。
通常、__LINE__とする。 The line number in the file specified by the 1st argument from which this function was called; usually use __LINE__. |