Author Topic: EDDI related, Can I suppress plugin messages  (Read 960 times)

Khalarin

  • Newbie
  • *
  • Posts: 13
EDDI related, Can I suppress plugin messages
« on: August 05, 2020, 11:19:31 AM »
I'm just wondering if its possible to suppress plugin notifications?

With EDDI it always outputs:
Code: [Select]
Plugin Command : '((EDDI Cmd))'
I'm planning my own output to the window and I would like to be able to on finished commands to suppress that output line, but only when I want to. Otherwise I want it on. Is this possible or just not the way VA & plugins work?

Thanks
- Khal


Pfeil

  • Global Moderator
  • Hero Member
  • *****
  • Posts: 4759
  • RTFM
Re: EDDI related, Can I suppress plugin messages
« Reply #1 on: August 05, 2020, 11:27:30 AM »
You can hide the log message for a specific command by adding the "Ignore an Unrecognized Word or Phrase" action to it, which doesn't actually affect the command in any way aside from getting rid of the initial execution log message (the "Write a Value to the Event Log" action and other log output from that command will still work).

Note that the action is not affected by the flow of the command; Regardless of where it is in your action list, it will function (only disabling the action will stop it from doing so).

Khalarin

  • Newbie
  • *
  • Posts: 13
Re: EDDI related, Can I suppress plugin messages
« Reply #2 on: August 06, 2020, 04:18:13 AM »
Pfeil, thank you =)