The log path in foundry_context_get_logs() is incorrect, causing the
method to search for logfiles in an incorrect directory.
This commit changes the log directory in foundry_context_get_logs() so
that logs from the correct directory are returned.
local logs
local log
- logdir="$__foundry_context_root/$context/$logtype"
+ logdir="$__foundry_context_root/$context/logs/$logtype"
logs=()
while read -r log; do