JetBrains / ideolog

Interactive viewer for '.log' files.
MIT License
251 stars 54 forks source link

Doesn't highlight continguous lines #186

Open pgalbraith opened 2 months ago

pgalbraith commented 2 months ago

The plugin seems to think that messages end after the severity, regardless of the "message start" pattern which seems to be ignored.

image

Am I misinterpreting how these regex formats should be set up? Some documentation/help would be really nice.

image

Test log:

2024-04-25 08:08:53,354 [Test worker @coroutine#2] DEBUG i.v.c.l.LoggerFactory - Using io.vertx.core.logging.SLF4JLogDelegateFactory
2024-04-25 08:08:53,648 [DefaultDispatcher-worker-1 @coroutine#4] INFO  k.application - Autoreload is disabled because the development mode is off.
2024-04-25 08:08:53,669 [DefaultDispatcher-worker-1 @coroutine#4] INFO  k.application - Application started in 0.079 seconds.
2024-04-25 08:08:53,683 [DefaultDispatcher-worker-1 @coroutine#3] INFO  k.application - Responding at http://127.0.0.1:52766

Message pattern: ^(.+)\s\[(.*)\]\s(\S+)\s.*$