From 2bd6c9ae95cd24ab415919934d453c7640c44385 Mon Sep 17 00:00:00 2001 From: Jonathan G Rennison Date: Thu, 7 Jun 2018 06:58:04 +0100 Subject: [PATCH] Change "Base music set song missing..." debug message to level 1 --- src/music.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/music.cpp b/src/music.cpp index e131c02103..1975425269 100644 --- a/src/music.cpp +++ b/src/music.cpp @@ -141,7 +141,7 @@ bool MusicSet::FillSetDetails(IniFile *ini, const char *path, const char *full_f this->songinfo[i].cat_index = atoi(item->value); char *songname = GetMusicCatEntryName(filename, this->songinfo[i].cat_index); if (songname == NULL) { - DEBUG(grf, 0, "Base music set song missing from CAT file: %s/%d", filename, this->songinfo[i].cat_index); + DEBUG(grf, 1, "Base music set song missing from CAT file: %s/%d", filename, this->songinfo[i].cat_index); return false; } strecpy(this->songinfo[i].songname, songname, lastof(this->songinfo[i].songname));