This is an automated email from the ASF dual-hosted git repository.
aradzinski pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-nlpcraft.git
The following commit(s) were added to refs/heads/master by this push:
new dd44328 Fixed NLPCRAFT-408
dd44328 is described below
commit dd4432825c2ecf63c39414215c383f486960e56e
Author: Nikita Ivanov <[email protected]>
AuthorDate: Thu Aug 12 11:47:26 2021 -0700
Fixed NLPCRAFT-408
---
nlpcraft/src/main/scala/org/apache/nlpcraft/common/ansi/NCAnsi.scala | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git
a/nlpcraft/src/main/scala/org/apache/nlpcraft/common/ansi/NCAnsi.scala
b/nlpcraft/src/main/scala/org/apache/nlpcraft/common/ansi/NCAnsi.scala
index 826e7d7..fceb73b 100644
--- a/nlpcraft/src/main/scala/org/apache/nlpcraft/common/ansi/NCAnsi.scala
+++ b/nlpcraft/src/main/scala/org/apache/nlpcraft/common/ansi/NCAnsi.scala
@@ -1461,7 +1461,5 @@ object NCAnsi extends NCAnsi {
*/
def ackStatus(): Unit =
if (isEnabled)
- logger.info(
- U.gradAnsi8BitBgLine("ANSI coloring is enabled. Use
'-DNLPCRAFT_ANSI_COLOR_DISABLED=true' to disable it.", 130, 147)
- )
+ logger.info(s"${U.bgRainbow4Bit("ANSI")} coloring is enabled. Use
'-D${ansiCyanFg}NLPCRAFT_ANSI_COLOR_DISABLED${ansiReset}=true' to disable it.",
130, 147)
}