mirror of
https://github.com/akuker/RASCSI.git
synced 2024-11-23 08:31:05 +00:00
Do not log token (#570)
This commit is contained in:
parent
270a3688c6
commit
97127cf666
@ -858,7 +858,8 @@ bool ProcessCmd(const CommandContext& context, const PbDeviceDefinition& pb_devi
|
|||||||
s << ", ";
|
s << ", ";
|
||||||
}
|
}
|
||||||
isFirst = false;
|
isFirst = false;
|
||||||
s << "'" << param.first << "=" << param.second << "'";
|
string value = param.first != "token" ? param.second : "???";
|
||||||
|
s << "'" << param.first << "=" << value << "'";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user