Skip to content
Snippets Groups Projects
README.md 391 B
Newer Older
# Log API Requests
pbatroff's avatar
pbatroff committed

This extension allows you to log all (or selected) API requests going through your system. 
pbatroff's avatar
pbatroff committed

### Caveats
pbatroff's avatar
pbatroff committed

**Caution**: if upgrading from ``2.1-alpha1``, you need to execute the following statement on your database *before* updating the code:
pbatroff's avatar
pbatroff committed
```
ALTER TABLE apilogger_api_calls ADD COLUMN `id` int unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID', ADD PRIMARY KEY (id);
pbatroff's avatar
pbatroff committed
```