1
0
Fork 0
mirror of https://github.com/postmannen/ctrl.git synced 2025-03-31 01:24:31 +00:00

added printing to stderr for REQToConsole

This commit is contained in:
postmannen 2022-06-22 10:02:56 +02:00
parent 8c1f870d1e
commit fc3d69a94b
2 changed files with 10 additions and 1 deletions

View file

@ -639,7 +639,11 @@ An example could be that you send a `REQCliCommand` message to some node, and yo
#### REQToConsole
This is a pure replyMethod that can be used to get the data of the reply message printed to stdout where Steward is running.
This is a method that can be used to get the data of the message printed to console where Steward is running.
Default is to print to **stdout**, but printing to **stderr** can be done by setting the value of **methodArgs** to `"methodArgs": ["stderr"]`.
If used as a **replyMethod** set the **replyMethodArgs** `"replyMethodArgs": ["stderr"],`.
```json
[

View file

@ -2,6 +2,7 @@ package steward
import (
"fmt"
"log"
"os"
"path/filepath"
"time"
@ -253,6 +254,10 @@ func (m methodREQToConsole) handler(proc process, message Message, node string)
er := fmt.Errorf("error: no tui client started")
proc.errorKernel.errSend(proc, message, er)
}
case len(message.MethodArgs) > 0 && message.MethodArgs[0] == "stderr":
log.Printf("* DEBUG: MethodArgs: got stderr \n")
fmt.Fprintf(os.Stderr, "%v", string(message.Data))
fmt.Println()
default:
fmt.Fprintf(os.Stdout, "%v", string(message.Data))
fmt.Println()