File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
gremlin-console/src/main/groovy/org/apache/tinkerpop/gremlin/console Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -26,6 +26,7 @@ image::https://raw.githubusercontent.com/apache/tinkerpop/master/docs/static/ima
26
26
* Fixed bug in server `Settings` where it was referencing a property that was back in 3.3.0 and generating a warning log.
27
27
* Improved performance of `Traversal.lock()` which was being called excessively.
28
28
* Added log entry in `WsAndHttpChannelizerHandler` to catch general errors that escape the handlers.
29
+ * Improved invalid plugin error message in Gremlin Console.
29
30
* Added a `MessageSizeEstimator` implementation to cover `Frame` allowing Gremlin Server to better estimate message sizes for the direct buffer.
30
31
* Fixed bug in Gremlin Console for field accessor issue with JDK17.
31
32
* Improved logging around triggers of the `writeBufferHighWaterMark` so that they occur more than once but do not excessively fill the logs.
Original file line number Diff line number Diff line change @@ -158,7 +158,8 @@ class Console {
158
158
if (! io. quiet)
159
159
io. out. println (Colorizer . render(Preferences . infoColor, " plugin activated: " + pluggedIn. getPlugin(). getName()))
160
160
} else if (! io. quiet) {
161
- io. out. println (Colorizer . render(Preferences . infoColor, " invalid plugin: " + pluginName))
161
+ io. out. println (Colorizer . render(Preferences . infoColor, " invalid plugin: " + pluginName + " -- removing reference to this plugin." ))
162
+
162
163
}
163
164
}
164
165
You can’t perform that action at this time.
0 commit comments