0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-09-26 18:38:52 +02:00

ircd:Ⓜ️:vm: Simplify call for hook name in debuglog.

This commit is contained in:
Jason Volk 2020-03-02 19:36:49 -08:00
parent 9f4bc6606e
commit d08a4f6f24

View file

@ -663,7 +663,7 @@ try
{
log, "%s | phase:%s enter",
loghead(eval),
unquote(hook.feature.get("name")),
hook.name(),
};
#endif
@ -674,7 +674,7 @@ try
{
log, "%s | phase:%s leave",
loghead(eval),
unquote(hook.feature.get("name")),
hook.name(),
};
#endif
}