fs/Charset: remove useless log message

This commit is contained in:
Max Kellermann 2023-03-06 19:20:12 +01:00
parent 941f2ca60d
commit 6d4ec8b46f
1 changed files with 0 additions and 4 deletions

View File

@ -4,7 +4,6 @@
#include "Charset.hxx"
#include "Features.hxx"
#include "Domain.hxx"
#include "Log.hxx"
#include "lib/icu/Converter.hxx"
#include "util/AllocatedString.hxx"
#include "config.h"
@ -31,9 +30,6 @@ SetFSCharset(const char *charset)
fs_converter = IcuConverter::Create(charset);
assert(fs_converter != nullptr);
FmtDebug(path_domain,
"SetFSCharset: fs charset is {}", fs_charset);
}
#endif