# Batch Processor output

**URL:** https://forum.servoy.com/t/batch-processor-output/17739
**Category:** Classic Servoy
**Created:** [January 17, 2014, 12:15pm UTC](https://forum.servoy.com/t/batch-processor-output/17739 "2014-01-17T12:15:46Z")
**Posts on this page:** 9
**Page:** 1

<div class="post-metadata">

### Author: ![IT2Be](https://avatars.discourse-cdn.com/v4/letter/i/dc4da7/32.png) [@IT2Be](https://forum.servoy.com/u/IT2Be)
#### Post date: [January 17, 2014, 12:15pm UTC](https://forum.servoy.com/t/batch-processor-output/17739/1 "2014-01-17T12:15:46Z")

</div>

Hi,

To debug a running batch processor I created output like 'application.output(“my output”, LOGGINGLEVEL.DEBUG);.

The problem is that I do not see this output appear anywhere.

I expected it to be in the server log, that I can read from the admin pages.

Am I wrong here or should the output appear somewhere else?  
Is there a log4j property setting that I have to add to the properties file?

Thanks!

---

<div class="post-metadata">

### Author: ![mboegem](https://yyz2.discourse-cdn.com/flex010/user_avatar/forum.servoy.com/mboegem/32/4399_2.png) [@mboegem](https://forum.servoy.com/u/mboegem)
#### Post date: [January 17, 2014, 4:10pm UTC](https://forum.servoy.com/t/batch-processor-output/17739/2 "2014-01-17T16:10:25Z")

</div>

I just run into a similar issue but using the smart client.

Have an error caught within a try/catch

```auto
try{
my code….
} catch (_oErr) {
		application.output("ERROR: " + _oErr, LOGGINGLEVEL.ERROR);
		databaseManager.rollbackTransaction();
}

```

This is Servoy 7.3.0

---

<div class="post-metadata">

### Author: ![IT2Be](https://avatars.discourse-cdn.com/v4/letter/i/dc4da7/32.png) [@IT2Be](https://forum.servoy.com/u/IT2Be)
#### Post date: [January 17, 2014, 4:28pm UTC](https://forum.servoy.com/t/batch-processor-output/17739/3 "2014-01-17T16:28:29Z")

</div>

Hmm,

I just noticed that the very first output at INFO level is logged.  
Everything else is not.

Servoy 7.3.1.

---

<div class="post-metadata">

### Author: ![mboegem](https://yyz2.discourse-cdn.com/flex010/user_avatar/forum.servoy.com/mboegem/32/4399_2.png) [@mboegem](https://forum.servoy.com/u/mboegem)
#### Post date: [January 17, 2014, 4:52pm UTC](https://forum.servoy.com/t/batch-processor-output/17739/4 "2014-01-17T16:52:53Z")

</div>

> IT2Be:  
> just noticed that the very first output at INFO level is logged.

Maybe that’s where the x.x.1 stands for ![:D]( "Very Happy")

---

<div class="post-metadata">

### Author: ![ROCLASI](https://yyz2.discourse-cdn.com/flex010/user_avatar/forum.servoy.com/roclasi/32/4371_2.png) [@ROCLASI](https://forum.servoy.com/u/ROCLASI)
#### Post date: [January 17, 2014, 6:52pm UTC](https://forum.servoy.com/t/batch-processor-output/17739/5 "2014-01-17T18:52:10Z")

</div>

Hi Marcel,

You can tell Servoy what logging level you want to see in the various outputs (file, webpage,etc.).  
See the log4j.properties option in the servoy admin pages.  
For more info see [https://wiki.servoy.com/display/public/ … g+Settings](https://wiki.servoy.com/display/public/DOCS/Server+Log+Settings)

Hope this helps.

Edit: changed the URL to the current version

---

<div class="post-metadata">

### Author: ![jcompagner](https://yyz2.discourse-cdn.com/flex010/user_avatar/forum.servoy.com/jcompagner/32/4889_2.png) [@jcompagner](https://forum.servoy.com/u/jcompagner)
#### Post date: [January 20, 2014, 9:02am UTC](https://forum.servoy.com/t/batch-processor-output/17739/6 "2014-01-20T09:02:35Z")

</div>

Debug is not shown by default (or you must set tracing on i guess on the admin page)  
if you really want to let it show you can use ERROR or WARN  
Or tweak the logging properties as Robert says.

---

<div class="post-metadata">

### Author: ![mboegem](https://yyz2.discourse-cdn.com/flex010/user_avatar/forum.servoy.com/mboegem/32/4399_2.png) [@mboegem](https://forum.servoy.com/u/mboegem)
#### Post date: [January 20, 2014, 10:49am UTC](https://forum.servoy.com/t/batch-processor-output/17739/7 "2014-01-20T10:49:11Z")

</div>

> jcompagner:  
> if you really want to let it show you can use ERROR or WARN

In smart-client this doesn’t seem to work…  
Has been a default install, no tweaking on logging properties so far…

---

<div class="post-metadata">

### Author: ![jcompagner](https://yyz2.discourse-cdn.com/flex010/user_avatar/forum.servoy.com/jcompagner/32/4889_2.png) [@jcompagner](https://forum.servoy.com/u/jcompagner)
#### Post date: [January 20, 2014, 11:02am UTC](https://forum.servoy.com/t/batch-processor-output/17739/8 "2014-01-20T11:02:58Z")

</div>

in smart client this info will go to the java console.  
You will not see this in the server log. (i think there are tools for that)

---

<div class="post-metadata">

### Author: ![ROCLASI](https://yyz2.discourse-cdn.com/flex010/user_avatar/forum.servoy.com/roclasi/32/4371_2.png) [@ROCLASI](https://forum.servoy.com/u/ROCLASI)
#### Post date: [January 21, 2014, 9:35am UTC](https://forum.servoy.com/t/batch-processor-output/17739/9 "2014-01-21T09:35:19Z")

</div>

So in short, all clients running on the server (batch processors, web client, any kind of headless clients really) will log to the server log (when the [logging level permits it](https://wiki.servoy.com/display/public/DOCS/Server+Log+Settings)).  
Smart client will only log into the client console (when open) and if you want to log it to the server you need a third-party plugin like Patrick Ruhsert’s [Log plugin](http://www.servoy-plugins.de/plugins/log/log-plugin.html) (which happens to use log4j as well).
