それ自体がnginx構成にあるluaコード内にログポイント(io.write)を挿入したい(nginxにHttpLuaModuleを使用)。どうやってするか?アクセスログとエラーログには表示されません。
Nginxで実行する場合は、ngx.logを使用する必要があります。例えば:
ngx.log(ngx.STDERR, 'your message here')
実際の例については、 http://linuxfiddle.net/f/77630edc-b851-487c-b2c8-aa6c9b858ebb を参照してください
ドキュメントについては、 http://wiki.nginx.org/HttpLuaModule#ngx.log を参照してください
NginxでLuaをデバッグするための別のオプション(「印刷」に加えて)は、Luaを使用することですIDEリモートデバッグをサポートします。投稿した の手順 これをZeroBrane Studio IDEで行う方法について説明します。設定すると、ステップ、ブレークポイント、変数の検査、スタックトレース、コンソールなど、期待するほとんどのデバッグ機能を利用できます。 Luaコマンドをリモートで実行します。
openrestyの別のトラブルシューティングツールは lua-resty-console です。これにより、lua変数、インポートされたモジュール、呼び出し関数などを確認できます。インストールする必要があるのは、luarocksを使用していくつかを挿入することだけです。 nignx.confへの行。クライアントを起動してください。
[9] ngx(content)> ngx.config.prefix()
=> /workspace/lua-resty-console/
[10] ngx(content)> ngx.config.ngx_lua_version
=> 10011
[11] ngx(content)> ngx.config.nginx_configure()
=> --prefix=/usr/local/Cellar/openresty/1.13.6.1/nginx --with-cc-opt='-O2 -I/usr/local/include -I/usr/local/opt/pcre/include -I/usr/local/opt/openresty-openssl/include' --add-module=../ngx_devel_kit-0.3.0 --add-module=../echo-nginx-module-0.61 ...
[12] ngx(content)> ngx.sha →→
ngx.sha1_bin() ngx.shared.
[12] ngx(content)> ngx.shared. →→
ngx.shared.mycache. ngx.shared.metrics.
[12] ngx(content)> c = ngx.shared.mycache
=> nil
[13] ngx(content)> c
=> { <userdata 1>,
<metatable> = <1>{
__index = <table 1>,
add = <function 1>,
delete = <function 2>,
flush_all = <function 3>,
flush_expired = <function 4>,
get = <function 5>,
get_keys = <function 6>,
get_stale = <function 7>,
incr = <function 8>,
llen = <function 9>,
lpop = <function 10>,
lpush = <function 11>,
replace = <function 12>,
rpop = <function 13>,
rpush = <function 14>,
safe_add = <function 15>,
safe_set = <function 16>,
set = <function 17>
}
}
[14] ngx(content)> c:set('a', 1)
=> true
[15] ngx(content)> c:get('a')
=> 1
[16] ngx(content)> c:get_keys()
=> { "a" }