| 08:56:52.127 | trace | yii\base\Application::bootstrap | Bootstrap with yii\log\Dispatcher |
| 08:56:52.127 | trace | yii\base\Module::getModule | Loading module: debug |
| 08:56:52.128 | trace | yii\base\Application::bootstrap | Bootstrap with yii\debug\Module::bootstrap() |
| 08:56:52.129 | trace | yii\base\Module::getModule | Loading module: gii |
| 08:56:52.129 | trace | yii\base\Application::bootstrap | Bootstrap with yii\gii\Module::bootstrap() |
| 08:56:52.129 | trace | yii\web\Application::handleRequest | Route requested: 'api/game/game-today' |
| 08:56:52.129 | trace | yii\base\Module::getModule | Loading module: api |
| 08:56:52.130 | trace | yii\base\Controller::runAction | Route to run: api/game/game-today |
| 08:56:52.130 | trace | yii\base\InlineAction::runWithParams | Running action: app\modules\api\controllers\GameController::actionGameToday() |
| 08:56:52.130 | info | yii\db\Command::query | SHOW FULL COLUMNS FROM `league` |
| 08:56:52.130 | info | yii\db\Connection::open | Opening DB connection: mysql:host=localhost;dbname=mobileapi |
| 08:56:52.131 | info | yii\db\Command::query | SELECT
kcu.constraint_name,
kcu.column_name,
kcu.referenced_table_name,
kcu.referenced_column_name
FROM information_schema.referential_constraints AS rc
JOIN information_schema.key_column_usage AS kcu ON
(
kcu.constraint_catalog = rc.constraint_catalog OR
(kcu.constraint_catalog IS NULL AND rc.constraint_catalog IS NULL)
) AND
kcu.constraint_schema = rc.constraint_schema AND
kcu.constraint_name = rc.constraint_name
WHERE rc.constraint_schema = database() AND kcu.table_schema = database()
AND rc.table_name = 'league' AND kcu.table_name = 'league' |
| 08:56:52.132 | info | yii\db\Command::query | SELECT * FROM `league` WHERE `leagueId`='2' |
| 08:56:52.132 | trace | application | Date: 19-12-2025 08:56:52, start timestamp: 1766080612, end timestamp:1766167012 |
| 08:56:52.132 | info | yii\db\Command::query | SHOW FULL COLUMNS FROM `game` |
| 08:56:52.133 | info | yii\db\Command::query | SELECT
kcu.constraint_name,
kcu.column_name,
kcu.referenced_table_name,
kcu.referenced_column_name
FROM information_schema.referential_constraints AS rc
JOIN information_schema.key_column_usage AS kcu ON
(
kcu.constraint_catalog = rc.constraint_catalog OR
(kcu.constraint_catalog IS NULL AND rc.constraint_catalog IS NULL)
) AND
kcu.constraint_schema = rc.constraint_schema AND
kcu.constraint_name = rc.constraint_name
WHERE rc.constraint_schema = database() AND kcu.table_schema = database()
AND rc.table_name = 'game' AND kcu.table_name = 'game' |
| 08:56:52.133 | info | yii\db\Command::query | SELECT `game`.* FROM `game` LEFT JOIN `tournament` ON `game`.`tournamentId` = `tournament`.`tournamentId` LEFT JOIN `team` `host` ON `game`.`hostTeamId` = `host`.`teamId` LEFT JOIN `team` `guest` ON `game`.`guestTeamId` = `guest`.`teamId` WHERE (`tournament`.`leagueId`=2) AND ((`game`.`date` >= 1766080612) AND (`game`.`date` <= 1766167012)) AND (`game`.`date` >= 1766113012) AND ((`guest`.`own`=1) OR (`host`.`own`=1)) ORDER BY `game`.`date` |