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