diff options
Diffstat (limited to 'src/win/native/Cursor.cpp')
-rw-r--r-- | src/win/native/Cursor.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/win/native/Cursor.cpp b/src/win/native/Cursor.cpp index ca8bb1cd..a6ab5bfc 100644 --- a/src/win/native/Cursor.cpp +++ b/src/win/native/Cursor.cpp @@ -16,8 +16,8 @@ WinCursor::~WinCursor() { if (!::DestroyCursor(handle_)) { // This is not a fetal error but might still need notice because it may // cause leak. - log::Warn("Failed to destroy a cursor. Last error code: {}", - ::GetLastError()); + log::TagWarn(log_tag, "Failed to destroy a cursor. Last error code: {}", + ::GetLastError()); } } } |