(/*actions*/)
| 62 | } |
| 63 | |
| 64 | function filterEventLogsByAction(/*actions*/) { |
| 65 | var actions = [].slice.call(arguments); |
| 66 | |
| 67 | logFilter.eventNames.length || (logFilter.eventNames = ALL); |
| 68 | logFilter.actions = actions.length ? actions : ALL; |
| 69 | saveLogFilter(); |
| 70 | } |
| 71 | |
| 72 | function filterEventLogsByName(/*eventNames*/) { |
| 73 | var eventNames = [].slice.call(arguments); |
nothing calls this directly
no test coverage detected