Skip to content

Commit

Permalink
Automatically expand Post task execution logs log group
Browse files Browse the repository at this point in the history
This change automatically expands the `Post task execution logs` log group to make debugging easier.

See issue apache#41198
  • Loading branch information
mjohansenwork authored Aug 1, 2024
1 parent 9fbaca0 commit afc3992
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ const Logs = ({
const [fileSourceFilters, setFileSourceFilters] = useState<
Array<FileSourceOption>
>([]);
const [unfoldedLogGroups, setUnfoldedLogGroup] = useState<Array<string>>([]);
const [unfoldedLogGroups, setUnfoldedLogGroup] = useState<Array<string>>(["Post task execution logs"]);
const { timezone } = useTimezone();

const { data: taskInstance } = useTaskInstance({
Expand Down

0 comments on commit afc3992

Please sign in to comment.