The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
42 views

Database log details page blank

We're having a problem with our log detail page (/admin/reports/event/XXXXXX): As you can see, the content is blank. There are no apparent errors in the Apache logs. View source shows that the ...
0
votes
1answer
27 views

In Drupal 7, what events are logged?

I'm looking for a list of the events that Drupal 7 logs via watchdog. The question I'm trying to answer for a colleague is this: "What logging Drupal is capable of, specifically related to security, ...
2
votes
1answer
39 views

Drupal 7 Audit log

I'm setting up an audit log for a large network of Drupal 7 sites with dozens of editors and 5 developers. These events are already covered: Content Create, Content Update, Content Delete, User ...
3
votes
2answers
104 views

How to call watchdog() outside Drupal

I'm getting used to use the Drupal watchdog() function. It provides me a very simple and accessible way to log events in my code. However, I would like to use the same (or very similar) function in ...
1
vote
2answers
84 views

Suppressing APC cache warning messages in watchdog log

My Drupal-oriented shared webhost recently updated PHP and APC and turned on reporting APC warnings. Now my watchdog log has many, many entries of the form Warning: include() [function.include]: ...
0
votes
1answer
57 views

Multiple “page not found” errors in log

I am getting "page no found" errors in my website log. Maybe it is some bots that search for directories that do not actually exist. I get at least 50-100 daily of these messages. The log says, for ...
0
votes
1answer
41 views

Create a log when user join/abandoned in a og group in Drupal 7

I'm creating a log with several actions in drupal. I need register in a custom log when a user requests to join a group. Then I need register that the user has joined in the group or has abandoned ...
1
vote
3answers
81 views

Create a log of create/delete users in Drupal 7

I'm creating a log with several actions in drupal. I register similar actions with hook_watchdog. /** * Implements hook_watchdog(). */ function MYMODULE_log_watchdog(array $log_entry) { ...
0
votes
1answer
30 views

Can I create a view of watchdog log entries?

We want to view a more detailed view of watchdog log entries, filtered by module and level and showing the details section in a table. When creating a new view, watchdog logs is not in the list. Is ...
1
vote
2answers
235 views

how cron.php works for watchdog

I want to truncate the table 'watchdog' once a day. So i heave: to set the maximum rows number from the 'Logging and Alerts' (of Site Configuration) to 1000 create a crontab on my system to run ...
3
votes
2answers
108 views

How to hook into adding watchdog entries by other modules?

Is it possible to write some code to intercept the process of adding Watchdog entries and filter them before adding to the log? Or is there a module that allows for watchdog filtering before adding to ...
1
vote
1answer
57 views

Why I can't access to dblog?

Why I can't access to /admin/reports/dblog? It's not listed in the Admin Menu and when I try to get there directly I see the the Reports site (/admin/reports) I've installed Drupal 7.15 with the ...
0
votes
1answer
289 views

Watchdog “404 page not found” entries from spambot guessing urls

Browsing through the watchdog list I found a lot of page not found entries with urls like: http://mysite.com/wp/wp-trackback.php http://mysite.com/phpMyAdmin-2.5.5-pl1/index.php ...
4
votes
2answers
514 views

Unlimitted entries in Watchdog table

I need to set watchdog log entries to unlimitted. Now it clears every time when cron is called. admin/settings/logging/dblog now maximum is 100000, is there any better way to do this.
1
vote
1answer
109 views

What exactly is watchdog?

I am aware of the watchdog table in the Drupal database, but I am not sure how to use it effectively. Is it simply a message function that adds to the table like a stack in the database for ...
0
votes
1answer
1k views

watchdog table grows too big too fast

On a rather busy D6 site, I need to truncate watchdog table very frequently, since it grows at about few Gigabyes per day. On the other hand I can not disable access logs to avoid the table's ...