Telligent is writing job logs in my custom extension log file

We are running Telligent 11.1.5. We have a custom extension running that handles the Oauth logins. That extension logs different events based on the level configured (INFO, ERROR, DEBUG) and of course, only captures the events when the extension is called which is at authentication time. 

Recently we've upgraded to Telligent 11.1.8 and I noticed that our custom log was writing not only our events but Telligent's Jobs which is very strange. I stopped the Job Service, even disabled it, and restart the app pool and when the site came in again, I looked again at our custom file and different logs were still being written all of them related to Jobs:

Besides the out of the box entries, I have the following entry in the web.config file:

  <log4net>
    <root>
      <appender-ref ref="RollingFileAppender" />
      <level value="DEBUG" />
    </root>
    <appender name="RollingFileAppender" type="log4net.Appender.RollingFileAppender">
      <file value=".\logs\cloudIDLog.txt" />
	  <datePattern value="dd.MM.yyyy'.log'" />
      <appendToFile value="true" />
	  <rollingStyle value="Date" />
	  <staticLogFileName value="true" />
      <layout type="log4net.Layout.PatternLayout">
        <conversionPattern value="%4t %date %-5p %m%n" />
      </layout>
    </appender>
    <logger name="SageSLogger" additivity="false">
      <appender-ref ref="RollingFileAppender" />
    </logger>
  </log4net>	

I've been using that log4net config since 10.1 and never had this situation. Is there something I need to configure in order to avoid those Jobs logs being written in my custom log file?