the logs are not getting created in the file mentioned below but they are printing in the console when the application is runnning. please help me in the settings iam new to spark and logging concept.the path given below is in the server in which iam running the application.thanks in advance.
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<appender name="FILE" class="ch.qos.logback.core.FileAppender">
<file>/media/Share-Temp-Folder/vivek/myLogFile.log</file>
<append>true</append>
<prudent>false</prudent><!-- true if multiple JVM's write to single file -->
<encoder>
<pattern>%d [%thread] %-5level %logger{35} - %msg%n</pattern>
</encoder
</appender>
<root level="ERROR">
<appender-ref ref="FILE" />
</root>
</configuration>