Re: Exploring using Kotlin for building the "Cluster Management Service"

2019-01-03 Thread Aditya Anchuri
Bringing the discussion on the PR back to the dev list An important point that was raised by Anthony was: " Introducing a new language to the Geode project raises some questions that we need to answer as a community before adopting this proposal: - When is it appropriate to use Kotlin? When s

Re: JIRA Access

2019-01-03 Thread Dan Smith
Done! You should have access now. -Dan On Thu, Jan 3, 2019 at 3:53 PM Charlie Black wrote: > Dan, > > Awesome and thanks! My username is charliemblack > > Charlie > > On Thu, Jan 3, 2019 at 3:17 PM Dan Smith wrote: > > > Hi Charlie, > > > > Sure, what's your user name in the apache JIRA? > >

Re: JIRA Access

2019-01-03 Thread Charlie Black
Dan, Awesome and thanks! My username is charliemblack Charlie On Thu, Jan 3, 2019 at 3:17 PM Dan Smith wrote: > Hi Charlie, > > Sure, what's your user name in the apache JIRA? > > -Dan > > On Thu, Jan 3, 2019 at 3:02 PM Charlie Black wrote: > > > I am currently acting as a product manager f

Re: JIRA Access

2019-01-03 Thread Dan Smith
Hi Charlie, Sure, what's your user name in the apache JIRA? -Dan On Thu, Jan 3, 2019 at 3:02 PM Charlie Black wrote: > I am currently acting as a product manager for geode native client > component. I was wondering if I could have edit privileges for the Geode > JIRA? > > Thanks, > > Charlie

JIRA Access

2019-01-03 Thread Charlie Black
I am currently acting as a product manager for geode native client component. I was wondering if I could have edit privileges for the Geode JIRA? Thanks, Charlie -- Charlie Black | cbl...@pivotal.io

Re: Geode Version in the logs

2019-01-03 Thread Patrick Rhomberg
You can write a custom log4j2.xml to configure logging to your heart's content. See Geode's and Log4j's documentation in [1] and [2] respectively. If the string you want to prepend is static, I'm pretty sure that can happen quite easily in a configuration XML. If it's dynamic, you might need to

Re: Geode Version in the logs

2019-01-03 Thread Nabarun Nag
Just in case you are planning to write tests consisting of multiple versions of Apache Geode simultaneously, you can look into any RollingUpgradeDUnitTest. Those append the version number before each log statement. Regards Nabarun Nag On Thu, Jan 3, 2019 at 8:53 AM Jacob Barrett wrote: > Given

Re: Geode Version in the logs

2019-01-03 Thread Jacob Barrett
Given that the version can’t change at runtime it doesn’t make sense to repeatedly print static state of the system. The log does print the static state of the system at startup. > On Jan 3, 2019, at 8:17 AM, Peter Tran wrote: > > Hello, > > Is it possible to prepend every log message with th

Geode Version in the logs

2019-01-03 Thread Peter Tran
Hello, Is it possible to prepend every log message with the current Geode version? I think it might help with debugging. I'm not sure how something like this would work as the software wouldn't really know how to read metadata about itself? Has something like this been attempted in the past? I wo