Skip to content

Commit

Permalink
mod: Don't print author and license
Browse files Browse the repository at this point in the history
  • Loading branch information
marv7000 committed Nov 23, 2024
1 parent 1c7fc73 commit 0bca847
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions kernel/system/module.c
Original file line number Diff line number Diff line change
Expand Up @@ -205,8 +205,7 @@ i32 module_load(const char* name)
return 0;

Module* const mod = loaded->module;
module_log("Loading module \"%s\" at 0x%p: %s (%s, %s)\n", mod->name, loaded->maps[0].address, mod->description,
mod->author, mod->license);
module_log("Loading module at 0x%p: \"%s\", \"%s\"\n", loaded->maps[0].address, mod->name, mod->description);

// Load all dependencies.
for (usize i = 0; i < mod->num_dependencies; i++)
Expand Down

0 comments on commit 0bca847

Please sign in to comment.