Jelajahi Sumber

use logger instead of plog

'plog' is hard to type, and logger is instinctive.
Weiyi Lou 13 tahun lalu
induk
melakukan
0ef9d6029a
1 mengubah file dengan 1 tambahan dan 1 penghapusan
  1. 1 1
      vim/snippets/php.snippets

+ 1 - 1
vim/snippets/php.snippets

@@ -3,5 +3,5 @@ snippet ppre
 	print_r('<pre>'); print_r($${1:check_variable}); exit;
 snippet vardump
 	var_dump($${1:check_variable}); exit;
-snippet plog
+snippet logger
 	Logger::debug('${1:description} ' . print_r($${2:variable}, true);