mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-04-02 22:08:43 +00:00
Add file/line reporting to redbean LuaLog (#250)
This commit is contained in:
parent
0ba3617e7f
commit
a63b147a93
1 changed files with 7 additions and 15 deletions
|
@ -4816,28 +4816,20 @@ static int LuaHidePath(lua_State *L) {
|
||||||
}
|
}
|
||||||
|
|
||||||
static int LuaLog(lua_State *L) {
|
static int LuaLog(lua_State *L) {
|
||||||
int level;
|
int level, line;
|
||||||
lua_Debug ar;
|
lua_Debug ar;
|
||||||
const char *msg, *module;
|
const char *msg, *module;
|
||||||
level = luaL_checkinteger(L, 1);
|
level = luaL_checkinteger(L, 1);
|
||||||
if (LOGGABLE(level)) {
|
if (LOGGABLE(level)) {
|
||||||
/*
|
|
||||||
* TODO: There needs to be some reasonable way to get the source
|
|
||||||
* filename and line number.
|
|
||||||
*/
|
|
||||||
msg = luaL_checkstring(L, 2);
|
msg = luaL_checkstring(L, 2);
|
||||||
lua_getstack(L, 0, &ar);
|
if (lua_getstack(L, 1, &ar) && lua_getinfo(L, "Sl", &ar)) {
|
||||||
lua_getinfo(L, "nSl", &ar);
|
module = ar.short_src;
|
||||||
if (!strcmp(ar.name, "main")) {
|
line = ar.currentline;
|
||||||
if (ar.source) {
|
|
||||||
module = ar.source;
|
|
||||||
} else {
|
|
||||||
module = gc(strndup(effectivepath.p, effectivepath.n));
|
|
||||||
}
|
|
||||||
} else {
|
} else {
|
||||||
module = ar.name;
|
module = gc(strndup(effectivepath.p, effectivepath.n));
|
||||||
|
line = -1;
|
||||||
}
|
}
|
||||||
flogf(level, module, ar.currentline, NULL, "%s", msg);
|
flogf(level, module, line, NULL, "%s", msg);
|
||||||
}
|
}
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue