File tree 2 files changed +1
-32
lines changed
2 files changed +1
-32
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ All notable changes to `:vips` will be documented in this file.
8
8
- switch to PSR2 formatting [ Kleis Auke Wolthuizen]
9
9
- add sig.php example [ John Cupitt]
10
10
- add Vips\Image::debugLogger() sample logger [ John Cupitt]
11
+ - added Vips\Config and Vips\Utils
11
12
12
13
### Deprecated
13
14
- removed ` \Enum ` from enum names
Original file line number Diff line number Diff line change @@ -86,38 +86,6 @@ public static function getLogger()
86
86
return self ::$ logger ;
87
87
}
88
88
89
- /**
90
- * Log a debug message.
91
- *
92
- * @param string $name The method creating the messages.
93
- * @param array $arguments The method arguments.
94
- *
95
- * @return void
96
- */
97
- public static function debugLog (string $ name , array $ arguments )
98
- {
99
- $ logger = self ::getLogger ();
100
- if ($ logger ) {
101
- $ logger ->debug ($ name , $ arguments );
102
- }
103
- }
104
-
105
- /**
106
- * Log an error message.
107
- *
108
- * @param string $message The error message.
109
- * @param \Exception $exception The exception.
110
- *
111
- * @return void
112
- */
113
- public static function errorLog (string $ message , \Exception $ exception )
114
- {
115
- $ logger = self ::getLogger ();
116
- if ($ logger ) {
117
- $ logger ->error ($ message , ['exception ' => $ exception ]);
118
- }
119
- }
120
-
121
89
/**
122
90
* Set the maximum number of operations to hold in the libvips operation
123
91
* cache.
You can’t perform that action at this time.
0 commit comments