Commit 7c6abb20 authored by Rafaël Carré's avatar Rafaël Carré

logger: move Apple related define where it is used

parent 9acc7692
...@@ -42,10 +42,6 @@ ...@@ -42,10 +42,6 @@
# include <android/log.h> # include <android/log.h>
#endif #endif
#ifdef __APPLE__
#define LOG_DIR "Library/Logs/"
#endif
#define LOG_FILE_TEXT "vlc-log.txt" #define LOG_FILE_TEXT "vlc-log.txt"
#define LOG_FILE_HTML "vlc-log.html" #define LOG_FILE_HTML "vlc-log.html"
...@@ -268,6 +264,7 @@ static int Open( vlc_object_t *p_this ) ...@@ -268,6 +264,7 @@ static int Open( vlc_object_t *p_this )
if( !psz_file ) if( !psz_file )
{ {
#ifdef __APPLE__ #ifdef __APPLE__
# define LOG_DIR "Library/Logs/"
char *home = config_GetUserDir(VLC_DOCUMENTS_DIR); char *home = config_GetUserDir(VLC_DOCUMENTS_DIR);
if( home == NULL if( home == NULL
|| asprintf( &psz_file, "%s/"LOG_DIR"/%s", home, || asprintf( &psz_file, "%s/"LOG_DIR"/%s", home,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment