Skip to content

Commit

Permalink
fix: logging
Browse files Browse the repository at this point in the history
  • Loading branch information
Curve committed Apr 11, 2024
1 parent 2a9aa40 commit e9c1b2b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 3.21)
project(venmic LANGUAGES CXX VERSION 3.4.0)
project(venmic LANGUAGES CXX VERSION 3.4.1)

# --------------------------------------------------------------------------------------------------------
# Library options
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"private": false,
"license": "MPL-2.0",
"author": "Curve (https://github.com/Curve)",
"version": "3.4.0",
"version": "3.4.1",
"main": "./lib/index.js",
"types": "./lib/module.d.ts",
"scripts": {
Expand Down
4 changes: 2 additions & 2 deletions src/patchbay.impl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ namespace vencord

if (id == mic_id)
{
logger::get()->warn("[patchbay] (link) prevented link to self", id, mic_id);
logger::get()->warn("[patchbay] (link) prevented link to self");
return;
}

Expand All @@ -127,7 +127,7 @@ namespace vencord

if (options.ignore_devices && !target.info.props["device.id"].empty())
{
logger::get()->warn("[patchbay] (link) prevented link to device", id, mic_id);
logger::get()->warn("[patchbay] (link) prevented link to device: {}", id);
return;
}

Expand Down

0 comments on commit e9c1b2b

Please sign in to comment.