Re: [Gambas-user] an y example of usage gb.logging ? wiki does not have any example

2015-12-14 Thread PICCORO McKAY Lenz
2015-12-14 19:07 GMT-04:30 Sebastian Kulesz : > I'm from Argentina, so it's no problem translating my emails. I was doing > it just in case. another user from spain tell me that its a pain search a solution to a specific problem in the archive list of sourgeforce (also take in consideration that sf

Re: [Gambas-user] an y example of usage gb.logging ? wiki does not have any example

2015-12-14 Thread Sebastian Kulesz
If you are using an old version of Gambas, you can try to copy the component's source code to your project. It does not use any fancy features introduced lately, so it should work. I'm not 100% sure it will work, but you can try anyway! On Mon, Dec 14, 2015, 20:38 PICCORO McKAY Lenz wrote: > hi

Re: [Gambas-user] an y example of usage gb.logging ? wiki does not have any example

2015-12-14 Thread Sebastian Kulesz
Glad it was useful! I'm from Argentina, so it's no problem translating my emails. I was doing it just in case. Anyways, the time you don't spend writing an email correctly, is time we, the rest of the list, have to spend trying to decipher it to gasp what you were trying to say. We are all trying

Re: [Gambas-user] an y example of usage gb.logging ? wiki does not have any example

2015-12-14 Thread PICCORO McKAY Lenz
hi again sebastian, the example works for me in debian wheeze, unfortunatelly does not in squeeze, due the minimun version to implement the logger are 3.4 so i post a link here for those in my particular situatiion that wants implement loggin in older versions of gambas: http://www.gambas-es.org/k

Re: [Gambas-user] an y example of usage gb.logging ? wiki does not have any example

2015-12-14 Thread PICCORO McKAY Lenz
thanks Sebastian, for example.. i now revised.. in the svn was looking a bit lost that's the part interest me: Dim cLogger As Logger cLogger = New Logger(LogLevel.Error, Null, Logger.Stdout) cLogger.Begin() cLogger.Log("Using the old logger interface", LogLevel.Critical) thanks, If you're

Re: [Gambas-user] an y example of usage gb.logging ? wiki does not have any example

2015-12-14 Thread Sebastian Kulesz
English here, Spanish translation is below! Here [0] is a little example which is available within the component. Otherwise, if you really just want to output text to the console, you can call Logger("This will be logged to the standard output"), or Logger.Log which is a mirror of the previous fun

Re: [Gambas-user] an y example of usage gb.logging ? wiki does not have any example

2015-12-14 Thread Christof Thalhofer
Am 14.12.2015 um 19:53 schrieb PICCORO McKAY Lenz: > but this need gambas 3.6, i have gambas 3.1 and 3.5 as maximun due i > used debian stable (wheeze) Then use Shell and the command logger. http://gambaswiki.org/wiki/lang/shell http://www.cyberciti.biz/tips/howto-linux-unix-write-to-syslog.html

Re: [Gambas-user] an y example of usage gb.logging ? wiki does not have any example

2015-12-14 Thread PICCORO McKAY Lenz
i'll waith for u sebastian, Meanwhile i search at the code at component in sf svn Lenz McKAY Gerardo (PICCORO) http://qgqlochekone.blogspot.com 2015-12-14 14:37 GMT-04:30 Sebastian Kulesz : > I can send you an example project in a few hours if you don't mind waiting. > Meanwhile, check out the so

Re: [Gambas-user] an y example of usage gb.logging ? wiki does not have any example

2015-12-14 Thread Sebastian Kulesz
I can send you an example project in a few hours if you don't mind waiting. Meanwhile, check out the source code of the component for a mini example on how to use it. -- Puedo mandar un proyecto de ejemplo en unas horas si no te molesta esperar. Mientras tanto, intenta ver el código fuente del c

Re: [Gambas-user] an y example of usage gb.logging ? wiki does not have any example

2015-12-14 Thread PICCORO McKAY Lenz
but this need gambas 3.6, i have gambas 3.1 and 3.5 as maximun due i used debian stable (wheeze) Lenz McKAY Gerardo (PICCORO) http://qgqlochekone.blogspot.com 2015-12-14 14:08 GMT-04:30 Benoît Minisini : > Le 14/12/2015 19:33, PICCORO McKAY Lenz a écrit : >> any example of usage gb.logging ? wiki

Re: [Gambas-user] an y example of usage gb.logging ? wiki does not have any example

2015-12-14 Thread Benoît Minisini
Le 14/12/2015 19:33, PICCORO McKAY Lenz a écrit : > any example of usage gb.logging ? wiki does not have any example > > how can i use that component to send log messages event print messages! > > remenber that a compiled gambas program does not send to stdout if are > running in background, so i n

[Gambas-user] an y example of usage gb.logging ? wiki does not have any example

2015-12-14 Thread PICCORO McKAY Lenz
any example of usage gb.logging ? wiki does not have any example how can i use that component to send log messages event print messages! remenber that a compiled gambas program does not send to stdout if are running in background, so i need a loggin implementation.. so can i use that component!