You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -15,34 +15,34 @@ Install via modman or copy the files into your magento installation.
15
15
### BE CAREFUL
16
16
This extension writes a lot of data into the database and we exclude only a few core classes. If you have many writes in the backend, please have a look into this to avoid a full hard disk!
17
17
18
-
To exclude a class, add it into the node `config/default/firegento_AdminMonitoring_config/exclude/object_types`
18
+
To exclude a class, add it into the node `config/default/firegento_adminmonitoring_config/exclude/object_types`
19
19
20
20
<config>
21
21
<default>
22
-
<firegento_AdminMonitoring_config>
22
+
<firegento_adminmonitoring_config>
23
23
<exclude>
24
24
<object_types>
25
25
<Mage_Index_Model_Event />
26
26
<!-- omit infinite loops -->
27
27
<Firegento_AdminMonitoring_Model_History />
28
28
</object_types>
29
29
</exclude>
30
-
</firegento_AdminMonitoring_config>
30
+
</firegento_adminmonitoring_config>
31
31
</default>
32
32
</config>
33
33
34
34
You can also exclude fields like updated_at ...
35
35
36
36
<config>
37
37
<default>
38
-
<firegento_AdminMonitoring_config>
38
+
<firegento_adminmonitoring_config>
39
39
<exclude>
40
40
<fields>
41
41
<updated_at />
42
42
<update_time />
43
43
</fields>
44
44
</exclude>
45
-
</firegento_AdminMonitoring_config>
45
+
</firegento_adminmonitoring_config>
46
46
</default>
47
47
</config>
48
48
@@ -54,7 +54,7 @@ To do this observe the firegento_AdminMonitoring_rowurl event and see Firegento_
54
54
If you want to log your own events just dispatch the firegento_AdminMonitoring_log event:
0 commit comments