Skip to content

Commit

Permalink
add debug info for viewing song info
Browse files Browse the repository at this point in the history
  • Loading branch information
dogatech committed Oct 9, 2023
1 parent 24d0f33 commit 211f07b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions be/src/MusicVideoService.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,10 @@ vector<string> MusicVideoService::downloadAudio(const string& url) {
boost::property_tree::ptree ptree;
std::stringstream tmp(json);
read_json(tmp, ptree);
if (SoulSifterSettings::getInstance().get<bool>("app.debug")) {
LOG(DEBUG) << "song info";
LOG(DEBUG) << json;
}

Song* song = new Song();
Album* album = new Album();
Expand Down
2 changes: 1 addition & 1 deletion fe/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "SoulSifter",
"version": "1.5.1",
"description": "DJ & music organization app.",
"build": 2999,
"build": 3000,
"main": "main.js",
"scripts": {
"fe:build": "vite build",
Expand Down

0 comments on commit 211f07b

Please sign in to comment.