Skip to content

Commit

Permalink
try always using console.error
Browse files Browse the repository at this point in the history
  • Loading branch information
waahm7 committed Dec 16, 2024
1 parent 07234d2 commit ba26ae0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/logger.c
Original file line number Diff line number Diff line change
Expand Up @@ -263,15 +263,15 @@ void s_threadsafe_log_create(struct aws_napi_logger_ctx *ctx, napi_env env) {

/* process._rawDebug is specific to NodeJS and may not exist in
other environments like Deno, fall back to console.error */
if (rawdebug_type == napi_undefined) {
//if (rawdebug_type == napi_undefined) {
napi_value node_console = NULL;
AWS_NAPI_ENSURE(env, napi_get_named_property(env, node_global, "console", &node_console));

napi_value node_error = NULL;
AWS_NAPI_ENSURE(env, napi_get_named_property(env, node_console, "error", &node_error));

node_rawdebug = node_error;
}
//}

napi_value resource_name = NULL;
AWS_NAPI_ENSURE(env, napi_create_string_utf8(env, "aws_logger", 10, &resource_name));
Expand Down

0 comments on commit ba26ae0

Please sign in to comment.