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
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
}