log4ls-developer Mailing List for Log4LS
Status: Pre-Alpha
Brought to you by:
kanngard
You can subscribe to this list here.
2003 |
Jan
|
Feb
(4) |
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
---|---|---|---|---|---|---|---|---|---|---|---|---|
2004 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(1) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: <ben...@id...> - 2004-05-22 12:04:23
|
Dear Open Source developer I am doing a research project on "Fun and Software Development" in which I kindly invite you to participate. You will find the online survey under http://fasd.ethz.ch/qsf/. The questionnaire consists of 53 questions and you will need about 15 minutes to complete it. With the FASD project (Fun and Software Development) we want to define the motivational significance of fun when software developers decide to engage in Open Source projects. What is special about our research project is that a similar survey is planned with software developers in commercial firms. This procedure allows the immediate comparison between the involved individuals and the conditions of production of these two development models. Thus we hope to obtain substantial new insights to the phenomenon of Open Source Development. With many thanks for your participation, Benno Luthiger PS: The results of the survey will be published under http://www.isu.unizh.ch/fuehrung/blprojects/FASD/. We have set up the mailing list fa...@we... for this study. Please see http://fasd.ethz.ch/qsf/mailinglist_en.html for registration to this mailing list. _______________________________________________________________________ Benno Luthiger Swiss Federal Institute of Technology Zurich 8092 Zurich Mail: benno.luthiger(at)id.ethz.ch _______________________________________________________________________ |
From: <jo...@ka...> - 2003-02-17 19:24:55
|
Hello Laurent, You are quite right, Log4LS does not currently support hierarchies, as Log4J does, but the plan is to implement in the near (?) future. Regards, =5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F=5F= =5F=5F=5F=5F=5F=5F=5F=5F=5F Johan K=E4nng=E5rd kan...@us... http://dev.kanngard.net -----Original Message----- From: log...@li... [mailto:log...@li...]On Behalf Of SALAT Laurent Sent: den 17 februari 2003 16:05 To: 'log...@li...' Subject: [Log4ls-developer] hierarchy of loggers Hi, First, sorry for my bad english... I had a look at your framework LOG4LS. Very nice job done ! I've read some informations about LOG4J to understand the way the system works, and everything seems clear. I managed to create my own configurator, appender and layout classes and it works fine. But I've got a question... :op I understood (tell me if I'm wrong) that you can define hierarchies of loggers. But it seems to me that LS code in Log4LS does not allow to define these hierarchies. Am I right ? If this is true, do you plan to develop the functiunality in a future release ? Thanks in advance for your answer and thanks for your library ! Best regards Laurent |
From: SALAT L. <LS...@mi...> - 2003-02-17 15:05:39
|
Hi, First, sorry for my bad english... I had a look at your framework LOG4LS. Very nice job done ! I've read some informations about LOG4J to understand the way the system works, and everything seems clear. I managed to create my own configurator, appender and layout classes and it works fine. But I've got a question... :op I understood (tell me if I'm wrong) that you can define hierarchies of loggers. But it seems to me that LS code in Log4LS does not allow to define these hierarchies. Am I right ? If this is true, do you plan to develop the functiunality in a future release ? Thanks in advance for your answer and thanks for your library ! Best regards Laurent |
From: <jo...@ka...> - 2003-02-05 22:11:20
|
Sorry for my late answer. Try doing your own configurator and layout, like this: Public Class MyConfigurator Public Sub new() On Error Goto catch Dim a As New NotesAppender() Dim layout As New MyLayout() Call a.setLayout(layout) Dim l As Logger Set l = LogManager.getLogger("root") Dim session As New NotesSession() Dim s As String s = session.currentDatabase.filePath Do While Instr(s, "\") > 0 s = Left(s, Instr(s, "\") - 1) + "." _ + Right$(s, Len(s) - Instr(s, "\") - Len("\") + 1) Loop ' This sets the name of the agent: Call l.setName(s & "." & session.currentAgent.name) Call l.addAppender(a) finally: Exit Sub catch: Call LogLog.classError(Me) Resume finally End Sub End Class Public Class MyLayout As Layout level As Level Public Sub new End Sub Public Function format(evt As LoggingEvent) As String Set level = Nothing Set level = evt.getLevel() ' The next line contains the name of the agent (logger name) Me.format = evt.getLoggerName() & ": " & level.toString() _ & " - " & evt.getMessage() & lineSeparator End Function End Class Put the above in your (Declarations) and put this in the Initialize sub: Dim myConfigurator As New MyConfiguratore() You could extend the classes above to get further information to the log. Regards, Johan __________________________________ Johan Kanngard kan...@us... http://dev.kanngard.net -----Original Message----- From: log...@li... [mailto:log...@li...]On Behalf Of eqe Sent: den 3 februari 2003 05:22 To: log...@li... Subject: [Log4ls-developer] how to retrieve the name of the agent > ok, i'm using your code and i figured out how to direct any > output to any log nsf; set the logging level; etc. > > but i cannot see the name of the program (i.e. agent) that > is running. so my log is full of stuff, but how do i know > which program/agent to trace it to? does your api have a > method for doing this? > Do you Yahoo!? Yahoo! Mail Plus - Powerful. Affordable. Sign up now |
From: eqe <eq...@ya...> - 2003-02-03 04:22:22
|
> ok, i'm using your code and i figured out how to direct any > output to any log nsf; set the logging level; etc. > > but i cannot see the name of the program (i.e. agent) that > is running. so my log is full of stuff, but how do i know > which program/agent to trace it to? does your api have a > method for doing this? > --------------------------------- Do you Yahoo!? Yahoo! Mail Plus - Powerful. Affordable. Sign up now |