diff --git a/plugins/ui/ui.go b/plugins/ui/ui.go
index d3c3f4b63b88b5f7e863feba5132bfdd428d98e4..17d0c3d03e2132beb434c19fbdf2682b87dafedb 100644
--- a/plugins/ui/ui.go
+++ b/plugins/ui/ui.go
@@ -46,14 +46,8 @@ func configure(plugin *node.Plugin) {
 		}()
 	}))
 
-	node.DEFAULT_LOGGER.SetEnabled(false)
-
 	uiLogger.SetEnabled(true)
 	plugin.Node.AddLogger(uiLogger)
-
-	daemon.Events.Shutdown.Attach(events.NewClosure(func() {
-		node.DEFAULT_LOGGER.SetEnabled(true)
-	}))
 }
 
 func staticFileServer(c echo.Context) error {