Notice: Any messages purporting to come from this site telling you that your password has expired, or that you need to verify your details, confirm your email, resolve issues, making threats, or asking for money, are
spam. We do not email users with any such messages. If you have lost your password you can obtain a new one by using the
password reset link.
Entire forum
➜ MUSHclient
➜ Lua
➜ debug.traceback missing top level plugin information
debug.traceback missing top level plugin information
|
It is now over 60 days since the last post. This thread is closed.
Refresh page
Posted by
| Fiendish
USA (2,533 posts) Bio
Global Moderator |
Date
| Tue 22 Dec 2015 02:32 PM (UTC) |
Message
| A plugin has:
require "foo.lua"
function OnPluginInstall()
foo.do_a_thing(5)
end
foo.lua has
function do_a_thing(a)
return(check_errors(a))
end
function check_errors(b)
print(debug.traceback())
end
What gets printed is:
Quote:
stack traceback:
...\MUSHclient\lua\foo.lua:71: in function 'do_a_thing'
[string "Plugin"]:13: in function <[string "Plugin"]:12>
Notice that there is no given information about OnPluginInstall or the plugin name.
If I replace OnPluginInstall with
function OnPluginInstall()
test()
end
function test()
foo.do_a_thing(5)
end
Then the traceback shows
Quote:
stack traceback:
...\MUSHclient\lua\foo.lua:71: in function 'do_a_thing'
[string "Plugin"]:17: in function 'test'
[string "Plugin"]:13: in function <[string "Plugin"]:12>
<[string "Plugin"]:12> isn't super useful information |
https://github.com/fiendish/aardwolfclientpackage | Top |
|
Posted by
| Nick Gammon
Australia (23,094 posts) Bio
Forum Administrator |
Date
| Reply #1 on Tue 22 Dec 2015 08:55 PM (UTC) |
Message
| |
The dates and times for posts above are shown in Universal Co-ordinated Time (UTC).
To show them in your local time you can join the forum, and then set the 'time correction' field in your profile to the number of hours difference between your location and UTC time.
7,860 views.
It is now over 60 days since the last post. This thread is closed.
Refresh page
top