Re: [Newbie][IntelliJ Setup] How to run Kafka in IntelliJ

2019-10-14 Thread chandresh pancholi
Thanks Tao Xiao, It worked. On Mon, Oct 14, 2019 at 9:55 PM tao xiao wrote: > one more thing you need to do is to include slf4j-log4j in build.gradle as > it is not included as compiled by default > > On Tue, Oct 15, 2019 at 12:21 AM chandresh pancholi < > chandreshpancholi...@gmail.com> wrote:

Re: [Newbie][IntelliJ Setup] How to run Kafka in IntelliJ

2019-10-14 Thread tao xiao
one more thing you need to do is to include slf4j-log4j in build.gradle as it is not included as compiled by default On Tue, Oct 15, 2019 at 12:21 AM chandresh pancholi < chandreshpancholi...@gmail.com> wrote: > Wondering if below exception is anywhere related > > SLF4J: Failed to load class "org

Re: [Newbie][IntelliJ Setup] How to run Kafka in IntelliJ

2019-10-14 Thread chandresh pancholi
Wondering if below exception is anywhere related SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder". SLF4J: Defaulting to no-operation (NOP) logger implementation SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for further details. SLF4J: Failed to load class "org.slf4j.

Re: [Newbie][IntelliJ Setup] How to run Kafka in IntelliJ

2019-10-14 Thread chandresh pancholi
I have given full path in VM options *-Dlog4j.configuration=file:/Users/Chandresh/opensource/kafka/config/log4j.properties* still no logs in console. [image: Screenshot 2019-10-14 at 8.44.34 PM.png] On Mon, Oct 14, 2019 at 8:16 PM tao xiao wrote: > yes, you need to add log4j to jvm option > >

Re: [Newbie][IntelliJ Setup] How to run Kafka in IntelliJ

2019-10-14 Thread tao xiao
yes, you need to add log4j to jvm option -Dlog4j.configuration=file:/path/to/log4j.properties On Mon, Oct 14, 2019 at 10:33 PM chandresh pancholi < chandreshpancholi...@gmail.com> wrote: > Let me rephrase it. > > I figured out that Kafka is running successfully but i can't see logs in > IntelliJ

Re: [Newbie][IntelliJ Setup] How to run Kafka in IntelliJ

2019-10-14 Thread chandresh pancholi
Let me rephrase it. I figured out that Kafka is running successfully but i can't see logs in IntelliJ console. To see the logs do i have to change any properties. On Mon, Oct 14, 2019 at 5:53 PM chandresh pancholi < chandreshpancholi...@gmail.com> wrote: > Sadly, No luck !! > > [image: Screensho

Re: [Newbie][IntelliJ Setup] How to run Kafka in IntelliJ

2019-10-14 Thread chandresh pancholi
Sadly, No luck !! [image: Screenshot 2019-10-14 at 5.52.55 PM.png] On Mon, Oct 14, 2019 at 5:22 PM Manasvi Gupta wrote: > Can you try copying config/log4j.properties to > core/src/main/resources/log4j.properties and see if it helps? > > On Mon 14 Oct, 2019, 5:01 PM chandresh pancholi, < > chand

Re: [Newbie][IntelliJ Setup] How to run Kafka in IntelliJ

2019-10-14 Thread Manasvi Gupta
Can you try copying config/log4j.properties to core/src/main/resources/log4j.properties and see if it helps? On Mon 14 Oct, 2019, 5:01 PM chandresh pancholi, < chandreshpancholi...@gmail.com> wrote: > Manasavi, > > I have followed your blog but I am getting no logs in IDE. I am seeing > Kafka.mai

Re: [Newbie][IntelliJ Setup] How to run Kafka in IntelliJ

2019-10-14 Thread chandresh pancholi
Manasavi, I have followed your blog but I am getting no logs in IDE. I am seeing Kafka.main running infinitely with logging anything in IDE console. I have attached an image for your reference. On Mon, Oct 14, 2019 at 4:56 PM Manasvi Gupta wrote: > > https://medium.com/@manasvi/getting-started

Re: [Newbie][IntelliJ Setup] How to run Kafka in IntelliJ

2019-10-14 Thread Manasvi Gupta
https://medium.com/@manasvi/getting-started-with-contributing-to-apache-kafka-part-1-build-and-run-kafka-from-source-code-f900452fdc06 I wrote this blog post sometime ago for folks to get started with contributing to Apache Kafka. I am behind of part 2 of the post, hopefully will be done in few d

[Newbie][IntelliJ Setup] How to run Kafka in IntelliJ

2019-10-14 Thread chandresh pancholi
Hello Dev Community, I have been trying to setup Kafka in Intellij. When i try to run Kafka class in core package. it takes infinite time. It keeps loading. I want to pick up some newbie Kafka issues and work on them but this setup is not working for me. If anyone can help me setting up kafka p