Anton Yakimov

Results 15 comments of Anton Yakimov

Hi @BrianG61UK I've recently (1 week ago) updated two different EdgeRouter X's using same instructions - no issues. It may be silly but the only difference I can spot is...

> TinyGPS is very limited in scope, so I've been experimenting with [SparkFun_Ublox_Arduino_Library](https://github.com/sparkfun/SparkFun_Ublox_Arduino_Library). I've been able to switch the GPS to NMEA mode and selectively enable/disable NMEA sentences, with the...

Hi @skorhone, Wow, excellent work! It will take some time for me to review and merge changes. How urgently you need new version? Anton

Hello @marif1989 Gelfj is **not** using log2j2 and it's not affected by Log4Shell. It uses an older version of log4j which has its own vulnerabilities. You can check the pom.xml...

Hi, I should keep mah wiki pages up to date. I recommend using Maven or Gradle to automatically manage your dependencies. Add the following dependency section to your pom.xml: ```...

Fair enough. 1. Download gelfj JAR from http://search.maven.org/remotecontent?filepath=org/graylog2/gelfj/1.1.7/gelfj-1.1.7.jar 2. Download JSON-Simple from http://search.maven.org/remotecontent?filepath=com/googlecode/json-simple/json-simple/1.1/json-simple-1.1.jar 3. Check you log4j version as it may not be compatible 4. Place jar from step 1...

> How do you identify the version of log4j? You can look at the filename or you can just try and plug appender in and see if it works. >...

Hi, sorry I somehow missed your questions. Is this still actual?

Hi, You just need to use standard log4j functionality and log something. ``` Logger barlogger = Logger.getLogger("com.foo.Bar"); barlogger.info("Located nearest gas station."); ``` Please look at Log4J tutorials.

You are right. Appender only resolves hostname during instantiation. Resolving hostname every send might be very time consuming. I think configurable cache should be best option.