Skip to content

Commit 7ee29c3

Browse files
committed
Change the log level of stub functions
1 parent 900b252 commit 7ee29c3

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/utils/fluid_stub_functions.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,14 +34,14 @@
3434
static FLUID_INLINE void \
3535
function args \
3636
{ \
37-
FLUID_LOG(FLUID_ERR, "function " # function " is a stub"); \
37+
FLUID_LOG(FLUID_DBG, "function " # function " is a stub"); \
3838
}
3939

4040
#define STUB_FUNCTION(function, type, result, args) \
4141
static FLUID_INLINE type \
4242
function args \
4343
{ \
44-
FLUID_LOG(FLUID_ERR, "function " # function " is a stub, always returning " # result); \
44+
FLUID_LOG(FLUID_DBG, "function " # function " is a stub, always returning " # result); \
4545
return result; \
4646
}
4747

0 commit comments

Comments
 (0)