Skip to content

Commit

Permalink
Fix compiler error
Browse files Browse the repository at this point in the history
  • Loading branch information
juliannguyen4 committed Sep 16, 2024
1 parent 2aaef07 commit ce7fef1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/log.c
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ PyObject *Aerospike_Set_Log_Handler(PyObject *parent, PyObject *args,
void Aerospike_Enable_Default_Logging()
{
// Invoke C API to set log level
as_log_set_level((as_log_level)LOG_LEVEL_ERROR);
as_log_set_level((as_log_level)AS_LOG_LEVEL_ERROR);
// Register callback to C-SDK
as_log_set_callback((as_log_callback)console_log_cb);

Expand Down

0 comments on commit ce7fef1

Please sign in to comment.