Skip to content

Commit

Permalink
fix path
Browse files Browse the repository at this point in the history
  • Loading branch information
Varun Malhotra committed Feb 22, 2022
1 parent 9594396 commit 6cc963d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/VwoSdkLogMessages.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ class VwoSdkLogMessages {
public static function get()
{
return [
"debugLogs" => json_decode(file_get_contents("debug-messages.json"), true),
"infoLogs" => json_decode(file_get_contents("info-messages.json"), true),
"errorLogs" => json_decode(file_get_contents("error-messages.json"), true),
"warnLogs" => json_decode(file_get_contents("warning-messages.json"), true)
"debugLogs" => json_decode(file_get_contents(__DIR__ . "debug-messages.json"), true),
"infoLogs" => json_decode(file_get_contents(__DIR__ . "info-messages.json"), true),
"errorLogs" => json_decode(file_get_contents(__DIR__ . "error-messages.json"), true),
"warnLogs" => json_decode(file_get_contents(__DIR__ . "warning-messages.json"), true)
];
}
}

0 comments on commit 6cc963d

Please sign in to comment.