Some drive backends allow output of debugging information which can be
configured using properties of the image. Add fields to virStorageSource
which will allow configuring them.
ret->tlsFromConfig = src->tlsFromConfig;
ret->tlsVerify = src->tlsVerify;
ret->detected = src->detected;
+ ret->debugLevel = src->debugLevel;
+ ret->debug = src->debug;
/* storage driver metadata are not copied */
ret->drv = NULL;
bool tlsVerify;
bool detected; /* true if this entry was not provided by the user */
+
+ unsigned int debugLevel;
+ bool debug;
};