You are here

public function StashLogger::getAll in Backup and Migrate 8.4

Get all of the log messages that were saved to this stash.

Return value

array

File

lib/backup_migrate_core/src/Service/StashLogger.php, line 40

Class

StashLogger
Saves log entries to memory to be processed during the current process. This simple service does no clearing or memory management so should not be used for a long-running process.

Namespace

BackupMigrate\Core\Service

Code

public function getAll() {
  return $this->logs;
}