diff options
author | austriancoder <austriancoder> | 2004-09-18 12:49:02 +0000 |
---|---|---|
committer | austriancoder <austriancoder> | 2004-09-18 12:49:02 +0000 |
commit | 4f621752277b0c478add4ffd4c708478e8d7cf9c (patch) | |
tree | 85f7f13315e0da065fb88e1e9c8b0a50254bee5c /dxr3log.c | |
parent | 4e4f43575da1ba3284deecf5cb637fb3d4a5c206 (diff) | |
download | vdr-plugin-dxr3-4f621752277b0c478add4ffd4c708478e8d7cf9c.tar.gz vdr-plugin-dxr3-4f621752277b0c478add4ffd4c708478e8d7cf9c.tar.bz2 |
you can set now logpath in makefile
Diffstat (limited to 'dxr3log.c')
-rw-r--r-- | dxr3log.c | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -28,7 +28,11 @@ cLog::cLog() m_LogOpen = false; m_ForeFlush = true; - Open("dxr3plugin.log"); + std::string Filename; + Filename += LOGPATH; + Filename += "dxr3plugin.log"; + + Open(Filename); } // ================================== |