Skip to content

Commit

Permalink
module console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
bryantgillespie committed Oct 21, 2023
1 parent a1e1417 commit 3e26b94
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion modules/directus/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -145,8 +145,9 @@ export default defineNuxtModule({
}

log.success(`${redirects.length} Redirects loaded`);

for (const redirect of redirects) {
console.log(` • ${redirect.response_code}`, `From: ${redirect.url_old}`, `To: ${redirect.url_new}`);
log.info(` • ${redirect.response_code}`, `From: ${redirect.url_old}`, `To: ${redirect.url_new}`);
}

// Add Globals
Expand Down

0 comments on commit 3e26b94

Please sign in to comment.