google app engine - AppEngine TaskQueue Logging Levels -


i have application using push task queues,
know info parameters being sent tasks in admin console.

i figured easy solution log.info give me information, these don't seem show in admin console though.

only warning, severe level logs show up. current solution write these info logs out warnings (which terrible).

i see lots of examples of people using log.info in task queues.
supposed see info level logs in admin console?
looking in wrong place?
there way turn on info level logging in admin console?

thanks,
nathan

it depends on language using, gae comes default logging level of warning (at least in java does) being logged below level wont go through logs.

if using java need edit web-inf/logging.properties file , change value from

.level = warning

to

.level = info


Comments

Popular posts from this blog

javascript - AngularJS custom datepicker directive -

javascript - jQuery date picker - Disable dates after the selection from the first date picker -