logging improvement for library not found
parent
8145561ef3
commit
67022616fd
|
|
@ -1332,7 +1332,11 @@ class AWSBuildRunner {
|
||||||
readingLogs = false;
|
readingLogs = false;
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
core.info(json.logEvents[logEventsIndex].message);
|
const message = json.logEvents[logEventsIndex].message;
|
||||||
|
if (message.includes('Rebuilding Library because the asset database could not be found!')) {
|
||||||
|
core.warning('LIBRARY NOT FOUND!');
|
||||||
|
}
|
||||||
|
core.info(message);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
File diff suppressed because one or more lines are too long
|
|
@ -164,7 +164,11 @@ class AWSBuildRunner {
|
||||||
core.info('End of cloud runner job logs');
|
core.info('End of cloud runner job logs');
|
||||||
readingLogs = false;
|
readingLogs = false;
|
||||||
} else {
|
} else {
|
||||||
core.info(json.logEvents[logEventsIndex].message);
|
const message = json.logEvents[logEventsIndex].message;
|
||||||
|
if (message.includes('Rebuilding Library because the asset database could not be found!')) {
|
||||||
|
core.warning('LIBRARY NOT FOUND!');
|
||||||
|
}
|
||||||
|
core.info(message);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue