I created and run a schedule for testing, which did end up in the expected logging entries, so it may be related to the existing schedules. I will check that.
Since I am not a developer can you advise how e.g. log level 127 is related to the glib stuff listed below? Thank you, Helmut 31.03.2015----13:38:[email protected] wrote on 31.03.2015 11:35:52: > From: Matthew Mundell <matthew [email protected]>> To: Helmut Koers <HK [email protected]>, > Cc: openvas-disc [email protected]> Date: 31.03.2015 10:37> Subject: Re: [Openvas-discuss] Log ging of scheduled scans> Sent by: matthe [email protected]> > > What I was asking for is information on the log levels like "127", "128". > > Ah sorry, this is a glib thing. They're defined by GLogLevelFlags. > > typedef enum > { > /* log flags */ > G_LOG_FLAG_RECURSION = 1 << 0, > G_LOG_FLAG_FATAL = 1 << 1, > > /* GLib log levels */ > G_LOG_LEVEL_ERROR = 1 << 2, /* always fatal */ > G_LOG_LEVEL_CRITICAL = 1 << 3, > G_LOG_LEVEL_WARNING = 1 << 4, > G_LOG_LEVEL_MESSAGE = 1 << 5, > G_LOG_LEVEL_INFO = 1 << 6, > G_LOG_LEVEL_DEBUG = 1 << 7, > > G_LOG_LEVEL_MASK = ~(G_LOG_FLAG_RECURSION | > G_LOG_FLAG_FATAL) > } GLogLevelFlags; > > Mostly each level corresponds to a particular log function. > G_LOG_LEVEL_DEBUG includes g_debug messages, G_LOG_LEVEL_INFO includes > g_info messages, etc. > > > > > Message I noticed being logged are baisc information like for a status > > change of a task as shown in the example below: > > > > event task:MESSAGE:2015-03-31 08h18.33 CEST:29827: Status of task "xxxxx" > > has changed to Requested > > event task:MESSAGE:2015-03-31 08h18.33 CEST:29827: Task "xxxxx" has been > > requested to start by "user" > > These are G_LOG_LEVEL_MESSAGE messages. > > > > > I have not found any log information for scheduled scans. > > I'll try reproduce. > > -- > Greenbone Networks GmbH > Neuer Graben 17, 49074 Osnabrueck, Germany | AG Osnabrueck, HR B 202460 > Executive Directors: Lukas Grunwald, Dr. Jan-Oliver Wagner _______________________________________________ Openvas-discuss mailing list [email protected] https://lists.wald.intevation.org/cgi-bin/mailman/listinfo/openvas-discuss
