Moved "@load logging" to the functions files.

This commit is contained in:
Seth Hall 2011-03-01 17:45:19 -05:00
parent 2900f6bcee
commit d2e3328b91
2 changed files with 3 additions and 2 deletions

View file

@ -1,4 +1,5 @@
@load site @load site
@load logging
# Some enums for deciding what and when to log. # Some enums for deciding what and when to log.
type Directions_and_Hosts: enum { type Directions_and_Hosts: enum {

View file

@ -1,10 +1,10 @@
@load functions @load functions
@load logging
module KnownHosts; module KnownHosts;
export { export {
redef enum Log::ID += { KNOWN_HOSTS}; redef enum Log::ID += { KNOWN_HOSTS };
type Log: record { type Log: record {
ts: time; ts: time;
address: addr; address: addr;