summaryrefslogtreecommitdiffstats
path: root/src/Log.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2024-10-06 16:30:06 -0400
committerDavid Robillard <d@drobilla.net>2024-10-06 18:40:03 -0400
commit45bd400f71e574bfa2670f13f7c1611ab2089903 (patch)
treefd1e8c897a1a657323c5a2f1dceebcf290fa1d47 /src/Log.cpp
parentf3d9a68bfee80c57854369724de57f339ac0b5e1 (diff)
downloadingen-45bd400f71e574bfa2670f13f7c1611ab2089903.tar.gz
ingen-45bd400f71e574bfa2670f13f7c1611ab2089903.tar.bz2
ingen-45bd400f71e574bfa2670f13f7c1611ab2089903.zip
Remove dead code
Diffstat (limited to 'src/Log.cpp')
-rw-r--r--src/Log.cpp9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/Log.cpp b/src/Log.cpp
index e17e1555..1c5b64d9 100644
--- a/src/Log.cpp
+++ b/src/Log.cpp
@@ -72,15 +72,6 @@ Log::trace(const std::string& msg)
vtprintf(_uris.log_Trace, msg.c_str(), args);
}
-void
-Log::print(FILE* stream, const std::string& msg) const
-{
- fprintf(stream, "%s", msg.c_str());
- if (_flush) {
- fflush(stdout);
- }
-}
-
int
Log::vtprintf(LV2_URID type, const char* fmt, va_list args)
{