match log filenames more precisely for logtrace analysis (#1617)
* match log filenames more precisely for logtrace analysis
This commit is contained in:
parent
990bc2ea52
commit
5d1ea5e440
|
@ -294,7 +294,7 @@ dump_logs() {
|
|||
|
||||
dump_logtrace() {
|
||||
if [[ "$ENABLE_LOGTRACE" == "1" ]]; then
|
||||
find "${DATA_DIR}" -maxdepth 1 -type f -name 'log*.txt' | sed -e"s/${DATA_DIR}\//--nodes=/" | sort | xargs ./build/logtrace asr --log-dir="${DATA_DIR}" || true
|
||||
find "${DATA_DIR}" -maxdepth 1 -type f -regex '.*/log[0-9]+.txt' | sed -e"s/${DATA_DIR}\//--nodes=/" | sort | xargs ./build/logtrace asr --log-dir="${DATA_DIR}" || true
|
||||
fi
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue