diff options
| author | Jeff Carr <[email protected]> | 2024-01-21 14:44:47 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-01-21 14:44:47 -0600 |
| commit | 1fdf786a72fd4af0c1acca45b250b5f66ef3e31b (patch) | |
| tree | 0f247e40f69c8bdce56574a3b608c78955b6b447 /plugin.go | |
| parent | ba70be3064c1d082eb0e9146562b7f07dd894fb0 (diff) | |
visable state is honored. TODO: fix hide/show
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'plugin.go')
| -rw-r--r-- | plugin.go | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -222,9 +222,9 @@ func (n *Node) InitEmbed(resFS embed.FS) *Node { func (n *Node) LoadToolkitEmbed(name string, b []byte) *Node { for _, aplug := range allPlugins { - log.Info("LoadToolkitEmbed() already loaded toolkit plugin =", aplug.name) + log.Log(PLUG, "LoadToolkitEmbed() already loaded toolkit plugin =", aplug.name) if aplug.name == name { - log.Warn("LoadToolkitEmbed() SKIPPING", name, "as you can't load it twice") + log.Log(NOW, "LoadToolkitEmbed() SKIPPING", name, "as you can't load it twice") return n } } |
