Add missing space between function name and error message in plugin
loading logs for better readability.
Before:
```
load __erasure_code_init()did not register hangs
```
After:
```
load __erasure_code_init() did not register hangs
```
Signed-off-by: Kefu Chai <tchaikov@gmail.com>
Plugin *plugin = get(type, name);
if (plugin == 0) {
lderr(cct) << __func__ << " " << fname << " "
- << PLUGIN_INIT_FUNCTION << "()"
+ << PLUGIN_INIT_FUNCTION << "() "
<< "did not register plugin type " << type << " name " << name
<< dendl;
dlclose(library);