Skip to content

Commit

Permalink
Update using-multiple-logs.md
Browse files Browse the repository at this point in the history
Updated the docs useLogName on version 4
  • Loading branch information
tobischulz authored Oct 21, 2024
1 parent 82fc7bd commit b75d470
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions docs/advanced-usage/using-multiple-logs.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,14 @@ Activity::all()->last()->log_name; //returns 'other-log';

## Specifying a log for each model

By default, the `LogsActivity` trait uses `default_log_name` from the config file to write the logs. You can set a different log for each model by setting the `$logName` property on the model.
By default, the `LogsActivity` trait uses `default_log_name` from the config file to write the logs. To customize the log's name for each model, call the useLogName() method when configuring the LogOptions.

```
protected static $logName = 'custom_log_name_for_this_model';
public function getActivitylogOptions(): LogOptions
{
return LogOptions::defaults()
->useLogName('custom_log_name_for_this_model');
}
```

## Retrieving activity
Expand Down

0 comments on commit b75d470

Please sign in to comment.