Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/src/console/cmd.c

    rb2fa1204 rfeeac0d  
    4545#include <console/kconsole.h>
    4646#include <print.h>
    47 #include <log.h>
    4847#include <panic.h>
    4948#include <typedefs.h>
     
    640639        for (i = 0; basic_commands[i]; i++) {
    641640                if (!cmd_register(basic_commands[i])) {
    642                         log(LF_OTHER, LVL_ERROR,
    643                             "Cannot register command %s",
     641                        printf("Cannot register command %s\n",
    644642                            basic_commands[i]->name);
    645643                }
     
    667665        unsigned int _len = (unsigned int) len;
    668666        if ((_len != len) || (((int) _len) < 0)) {
    669                 log(LF_OTHER, LVL_ERROR, "Command length overflow");
     667                printf("Command length overflow\n");
    670668                return 1;
    671669        }
Note: See TracChangeset for help on using the changeset viewer.