@@ -35,7 +35,7 @@ public function process(): Collection
3535 // @todo When renaming DNs, the hotlink should point to the new entry on success, or the old entry on failure.
3636 foreach (preg_split ('/(\r?\n|\r)/ ' ,$ this ->input ) as $ line ) {
3737 $ c ++;
38- Log::debug (sprintf ('%s: LDIF Line [%s] ' ,self ::LOGKEY ,$ line ));
38+ Log::debug (sprintf ('%s:LDIF Line [%s] ' ,self ::LOGKEY ,$ line ));
3939 $ line = trim ($ line );
4040
4141 // If the line starts with a comment, ignore it
@@ -48,7 +48,7 @@ public function process(): Collection
4848 // Add the last attribute;
4949 $ o ->addAttributeItem ($ attribute ,$ base64encoded ? base64_decode ($ value ) : $ value );
5050
51- Log::debug (sprintf ('%s: Committing Entry [%s] ' ,self ::LOGKEY ,$ o ->getDN ()));
51+ Log::debug (sprintf ('%s:- Committing Entry [%s] ' ,self ::LOGKEY ,$ o ->getDN ()));
5252
5353 // Commit
5454 $ result ->push ($ this ->commit ($ o ,$ action ));
@@ -95,7 +95,7 @@ public function process(): Collection
9595 // If $m is NULL, then this is the 2nd (or more) line of a base64 encoded value
9696 if (! $ m ) {
9797 $ value .= $ line ;
98- Log::debug (sprintf ('%s: Attribute [%s] adding [%s] (%d) ' ,self ::LOGKEY ,$ attribute ,$ line ,$ c ));
98+ Log::debug (sprintf ('%s:- Attribute [%s] adding [%s] (%d) ' ,self ::LOGKEY ,$ attribute ,$ line ,$ c ));
9999
100100 // add to last attr value
101101 continue 2 ;
@@ -108,7 +108,7 @@ public function process(): Collection
108108 throw new GeneralException (sprintf ('Previous Entry not complete? (line %d) ' ,$ c ));
109109
110110 $ dn = $ base64encoded ? base64_decode ($ value ) : $ value ;
111- Log::debug (sprintf ('%s: Creating new entry: ' ,self ::LOGKEY ,$ dn ));
111+ Log::debug (sprintf ('%s:Creating new entry: ' ,self ::LOGKEY ,$ dn ));
112112 //$o = Entry::find($dn);
113113
114114 // If it doesnt exist, we'll create it
@@ -120,7 +120,7 @@ public function process(): Collection
120120 $ action = self ::LDAP_IMPORT_ADD ;
121121
122122 } else {
123- Log::debug (sprintf ('%s: Adding Attribute [%s] value [%s] (%d) ' ,self ::LOGKEY ,$ attribute ,$ value ,$ c ));
123+ Log::debug (sprintf ('%s:Adding Attribute [%s] value [%s] (%d) ' ,self ::LOGKEY ,$ attribute ,$ value ,$ c ));
124124
125125 if ($ value )
126126 $ o ->addAttributeItem ($ attribute ,$ base64encoded ? base64_decode ($ value ) : $ value );
@@ -134,7 +134,7 @@ public function process(): Collection
134134 $ attribute = $ m [1 ];
135135 $ value = $ m [3 ];
136136
137- Log::debug (sprintf ('%s: New Attribute [%s] with [%s] (%d) ' ,self ::LOGKEY ,$ attribute ,$ value ,$ c ));
137+ Log::debug (sprintf ('%s:- New Attribute [%s] with [%s] (%d) ' ,self ::LOGKEY ,$ attribute ,$ value ,$ c ));
138138 }
139139
140140 if ($ version !== 1 )
@@ -146,7 +146,7 @@ public function process(): Collection
146146 // Add the last attribute;
147147 $ o ->addAttributeItem ($ attribute ,$ base64encoded ? base64_decode ($ value ) : $ value );
148148
149- Log::debug (sprintf ('%s: Committing Entry [%s] ' ,self ::LOGKEY ,$ o ->getDN ()));
149+ Log::debug (sprintf ('%s:- Committing Entry [%s] ' ,self ::LOGKEY ,$ o ->getDN ()));
150150
151151 // Commit
152152 $ result ->push ($ this ->commit ($ o ,$ action ));
0 commit comments