go-vise

Constrained Size Output Virtual Machine
Info | Log | Files | Refs | README | LICENSE

commit e5285233f5d196bfd5c28e2200fea8bc6978a62c
parent ea6bfa050eebeb782d7cc49dabce637aa821c7ba
Author: lash <dev@holbrook.no>
Date:   Wed,  5 Feb 2025 10:26:55 +0000

Add logline when not find handler function

Diffstat:
Mresource/db.go | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/resource/db.go b/resource/db.go @@ -134,6 +134,7 @@ func (g *DbResource) DbFuncFor(ctx context.Context, sym string) (EntryFunc, erro if err == nil { return fn, nil } + logg.TraceCtxf(ctx, "function handler not registered", "sym", sym) if g.typs&db.DATATYPE_STATICLOAD == 0 { return nil, errors.New("not a staticload getter") }