lntest: export flag logoutput

This commit temporarily exports the flag `logoutput` so it can be used
by `lntemp`.
This commit is contained in:
yyforyongyu 2022-07-22 08:44:07 +08:00
parent cf0e0820d6
commit cd5ab844e2
No known key found for this signature in database
GPG key ID: 9BCD95C4FF296868
2 changed files with 5 additions and 3 deletions

View file

@ -609,7 +609,7 @@ func (hn *HarnessNode) startLnd(lndBinary string, lndError chan<- error) error {
fileName string
err error
)
if *logOutput {
if *LogOutput {
fileName, err = addLogFile(hn)
if err != nil {
return err
@ -1843,7 +1843,7 @@ func finalizeLogfile(hn *HarnessNode, fileName string) {
hn.logFile.Close()
// If logoutput flag is not set, return early.
if !*logOutput {
if !*LogOutput {
return
}

View file

@ -42,7 +42,9 @@ var (
// logOutput is a flag that can be set to append the output from the
// seed nodes to log files.
logOutput = flag.Bool("logoutput", false,
//
// TODO(yy): remove the export.
LogOutput = flag.Bool("logoutput", false,
"log output from node n to file output-n.log")
// logSubDir is the default directory where the logs are written to if